diff --git a/parent/center.manager/src/main/webapp/WEB-INF/views/content/org_operate.html b/parent/center.manager/src/main/webapp/WEB-INF/views/content/org_operate.html index 3afeaab..f2bd951 100644 --- a/parent/center.manager/src/main/webapp/WEB-INF/views/content/org_operate.html +++ b/parent/center.manager/src/main/webapp/WEB-INF/views/content/org_operate.html @@ -116,7 +116,7 @@ } function del(msgId){ - $.post(controllerRequestMappint + msgId+"/delete", "", function (data) { + $.post(APP.PATH + controllerRequestMappint + msgId+"/delete", "", function (data) { msg(r.message); showMessageList(); }, "json"); @@ -132,7 +132,7 @@ //发起Ajax进行修改 // alert(verId); - $.post(controllerRequestMappint + "configrTempVer", "hosptId=$hospId&tvId=" + verId, function (data) { + $.post(APP.PATH + controllerRequestMappint + "configrTempVer", "hosptId=$hospId&tvId=" + verId, function (data) { showMessageList(); var verText = $("#tempVerId option:selected").text(); $("#verName").text(verText); @@ -144,7 +144,7 @@ } function initTempVer() { - $.get("/contentTemplateVersion/list", "json", function (data) { + $.get(APP.PATH + "/contentTemplateVersion/list", "json", function (data) { if (data) { var optionTagHtml = ""; data.forEach(function (i, d) { @@ -156,7 +156,7 @@ } function initHouspVer() { - $.get(controllerRequestMappint + "/$hospId/getVersion", "json", function (data) { + $.get(APP.PATH + controllerRequestMappint + "/$hospId/getVersion", "json", function (data) { if (data.success) { $("#verName").append(data.data); }