회원가입 url 수정

main
이범준 11 months ago
parent a059040ccf
commit 0b16c403b5

@ -34,7 +34,7 @@ public class MainController extends AbstractController {
return "login"; return "login";
} }
@GetMapping(name="회원가입 페이지", value="/error/signupPage.do") @GetMapping(name="회원가입 페이지", value="/signupPage.do")
public ModelAndView signupPage(String institute) { public ModelAndView signupPage(String institute) {
ModelAndView mav = new ModelAndView("fims/user/user-info"); ModelAndView mav = new ModelAndView("fims/user/user-info");
@ -51,7 +51,7 @@ public class MainController extends AbstractController {
return mav; return mav;
} }
@RequestMapping(name="회원가입", value="/error/signup.do") @RequestMapping(name="회원가입", value="/signup.do")
public ModelAndView signup(ManagedUser user) { public ModelAndView signup(ManagedUser user) {
ModelAndView mav = new ModelAndView("jsonView"); ModelAndView mav = new ModelAndView("jsonView");
@ -61,14 +61,14 @@ public class MainController extends AbstractController {
return mav; return mav;
} }
@RequestMapping(name="중복 확인", value="/error/duplicate.do") @RequestMapping(name="중복 확인", value="/duplicate.do")
public ModelAndView isDuplicate(String account, String institute) { public ModelAndView isDuplicate(String account, String institute) {
ManagedUser user = userService.getUser(account, institute); ManagedUser user = userService.getUser(account, institute);
return new ModelAndView("jsonView") return new ModelAndView("jsonView")
.addObject("duplicate", user != null); .addObject("duplicate", user != null);
} }
@RequestMapping(name="기관 목록", value="/error/instList.do") @RequestMapping(name="기관 목록", value="/instList.do")
public ModelAndView instList(String account, String institute) { public ModelAndView instList(String account, String institute) {
List<DataObject> instList = factionMapper.selectAllInstList(); List<DataObject> instList = factionMapper.selectAllInstList();
return new ModelAndView("jsonView") return new ModelAndView("jsonView")

@ -310,7 +310,7 @@ function save(info){
var create = isEmpty(info.id) var create = isEmpty(info.id)
ajax.post({ ajax.post({
url:!create ? userControl.urls.update : wctx.url("/error/signup.do"), url:!create ? userControl.urls.update : wctx.url("/signup.do"),
data:info, data:info,
success: (resp) => { success: (resp) => {
if(resp.saved){ if(resp.saved){
@ -342,7 +342,7 @@ $("#btnDuplicate").on("click", function(){
} }
ajax.get({ ajax.get({
url : wctx.url("/error/duplicate.do"), url : wctx.url("/duplicate.do"),
data : { data : {
account : $("#user-form").find("[name='account']").val(), account : $("#user-form").find("[name='account']").val(),
institute : $("#user-form").find("[name='institute']").val() institute : $("#user-form").find("[name='institute']").val()

@ -151,7 +151,7 @@ function fnOpenSignup(){
} }
dialog.close("selectInstDialog"); dialog.close("selectInstDialog");
window.open(wctx.url("/error/signupPage.do")+"?institute="+$("#selectInst").val(), window.open(wctx.url("/signupPage.do")+"?institute="+$("#selectInst").val(),
"regAccount", "regAccount",
"width=950, height=500"); "width=950, height=500");
}, },
@ -181,7 +181,7 @@ $(function(){
$("#password").focus(); $("#password").focus();
ajax.get({ ajax.get({
url : wctx.url("/error/instList.do"), url : wctx.url("/instList.do"),
data : { }, data : { },
success : (resp) => { success : (resp) => {
INST_LIST = resp.instList; INST_LIST = resp.instList;

Loading…
Cancel
Save