답변문구,계도문문구 관리 수정

main
이범준 1 year ago
parent 66d2e76b35
commit fde80e2739

@ -1,7 +1,13 @@
package cokr.xit.fims.cvlc.web; package cokr.xit.fims.cvlc.web;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource; import javax.annotation.Resource;
import org.springframework.web.servlet.ModelAndView;
import cokr.xit.base.code.CommonCode;
import cokr.xit.base.web.ApplicationController; import cokr.xit.base.web.ApplicationController;
import cokr.xit.fims.cvlc.service.CrdnCvlcptService; import cokr.xit.fims.cvlc.service.CrdnCvlcptService;
@ -14,4 +20,18 @@ public class Cvlc05Controller extends ApplicationController {
@Resource(name="crdnCvlcptService") @Resource(name="crdnCvlcptService")
private CrdnCvlcptService crdnCvlcptService; private CrdnCvlcptService crdnCvlcptService;
/** .
* @return fims/cvlc/cvlc05010-main
*/
public ModelAndView cvlcptAnswerWordsManageMain() {
ModelAndView mav = new ModelAndView();
mav.setViewName("fims/cvlc/cvlc05010-main");
mav.addObject("pageName", "cvlc05010-main");
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM054");
mav.addObject("FIM054List", commonCodes.get("FIM054"));
return mav;
}
} }

@ -1,7 +1,13 @@
package cokr.xit.fims.cvlc.web; package cokr.xit.fims.cvlc.web;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource; import javax.annotation.Resource;
import org.springframework.web.servlet.ModelAndView;
import cokr.xit.base.code.CommonCode;
import cokr.xit.base.web.ApplicationController; import cokr.xit.base.web.ApplicationController;
import cokr.xit.fims.cvlc.service.CrdnCvlcptService; import cokr.xit.fims.cvlc.service.CrdnCvlcptService;
@ -14,4 +20,17 @@ public class Cvlc06Controller extends ApplicationController {
@Resource(name="crdnCvlcptService") @Resource(name="crdnCvlcptService")
private CrdnCvlcptService crdnCvlcptService; private CrdnCvlcptService crdnCvlcptService;
/** .
* @return fims/cvlc/cvlc06010-main
*/
public ModelAndView warningWordsManageMain() {
ModelAndView mav = new ModelAndView();
mav.setViewName("fims/cvlc/cvlc06010-main");
mav.addObject("pageName", "cvlc06010-main");
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM054");
mav.addObject("FIM054List", commonCodes.get("FIM054"));
return mav;
}
} }

@ -65,13 +65,27 @@ public class CmnController {
@Controller @Controller
@RequestMapping(name="민원신고답변 문구 관리", value="/cvlc/cvlc05") @RequestMapping(name="민원신고답변 문구 관리", value="/cvlc/cvlc05")
class Cvlc05Controller extends cokr.xit.fims.cvlc.web.Cvlc05Controller { class Cvlc05Controller extends cokr.xit.fims.cvlc.web.Cvlc05Controller {
/** .
* @return fims/cvlc/cvlc05010-main
*/
@Override
@RequestMapping(name="민원신고답변 문구 관리 메인", value="/010/main.do")
public ModelAndView cvlcptAnswerWordsManageMain() {
return super.cvlcptAnswerWordsManageMain();
}
} }
@Controller @Controller
@RequestMapping(name="계도문 문구 관리", value="/cvlc/cvlc06") @RequestMapping(name="계도문 문구 관리", value="/cvlc/cvlc06")
class Cvlc06Controller extends cokr.xit.fims.cvlc.web.Cvlc06Controller { class Cvlc06Controller extends cokr.xit.fims.cvlc.web.Cvlc06Controller {
/** .
* @return fims/cvlc/cvlc06010-main
*/
@Override
@RequestMapping(name="계도문 문구 관리 메인", value="/010/main.do")
public ModelAndView warningWordsManageMain() {
return super.warningWordsManageMain();
}
} }
@Controller @Controller

@ -282,9 +282,6 @@ $(document).ready(function(){
$P.searchRequestList = () => { $P.searchRequestList = () => {
$("#btnDelete--${pageName}").show();
$("#btnDeleteSameRcptYmd--${pageName}").show();
$P.requestControl.query = $P.getParams(); $P.requestControl.query = $P.getParams();
// TODO : 요청자료 조회 서비스 // $P.requestControl.load(1); // TODO : 요청자료 조회 서비스 // $P.requestControl.load(1);
} }

@ -357,6 +357,9 @@
column-gap: 3px; column-gap: 3px;
} }
.btns .btn {
margin:0 3px;
}
/* 카드 */ /* 카드 */
.card-header-line { .card-header-line {

@ -10937,6 +10937,26 @@ button.list-group-item-gray.active {
width: 800px !important; width: 800px !important;
} }
.w-px-900 {
width: 900px !important;
}
.w-px-1000 {
width: 1000px !important;
}
.w-px-1100 {
width: 1100px !important;
}
.w-px-1200 {
width: 1200px !important;
}
.w-px-1300 {
width: 1300px !important;
}
.w-auto { .w-auto {
width: auto !important; width: auto !important;
} }

Loading…
Cancel
Save