From c04499a4030988eaf7449032e70ef2db64ca4c65 Mon Sep 17 00:00:00 2001 From: yangfei Date: Mon, 5 Jun 2017 16:25:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=AF=E5=BE=84Bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/webapp/WEB-INF/views/content/org_operate.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); } -- 1.8.3.1