Commit c04499a4030988eaf7449032e70ef2db64ca4c65
1 parent
fce987d491
Exists in
master
路径Bug修复
Showing 1 changed file with 4 additions and 4 deletions
parent/center.manager/src/main/webapp/WEB-INF/views/content/org_operate.html
View file @
c04499a
| ... | ... | @@ -116,7 +116,7 @@ |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | function del(msgId){ |
| 119 | - $.post(controllerRequestMappint + msgId+"/delete", "", function (data) { | |
| 119 | + $.post(APP.PATH + controllerRequestMappint + msgId+"/delete", "", function (data) { | |
| 120 | 120 | msg(r.message); |
| 121 | 121 | showMessageList(); |
| 122 | 122 | }, "json"); |
| ... | ... | @@ -132,7 +132,7 @@ |
| 132 | 132 | |
| 133 | 133 | //发起Ajax进行修改 |
| 134 | 134 | // alert(verId); |
| 135 | - $.post(controllerRequestMappint + "configrTempVer", "hosptId=$hospId&tvId=" + verId, function (data) { | |
| 135 | + $.post(APP.PATH + controllerRequestMappint + "configrTempVer", "hosptId=$hospId&tvId=" + verId, function (data) { | |
| 136 | 136 | showMessageList(); |
| 137 | 137 | var verText = $("#tempVerId option:selected").text(); |
| 138 | 138 | $("#verName").text(verText); |
| ... | ... | @@ -144,7 +144,7 @@ |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | function initTempVer() { |
| 147 | - $.get("/contentTemplateVersion/list", "json", function (data) { | |
| 147 | + $.get(APP.PATH + "/contentTemplateVersion/list", "json", function (data) { | |
| 148 | 148 | if (data) { |
| 149 | 149 | var optionTagHtml = "<option>未选择</option>"; |
| 150 | 150 | data.forEach(function (i, d) { |
| ... | ... | @@ -156,7 +156,7 @@ |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | function initHouspVer() { |
| 159 | - $.get(controllerRequestMappint + "/$hospId/getVersion", "json", function (data) { | |
| 159 | + $.get(APP.PATH + controllerRequestMappint + "/$hospId/getVersion", "json", function (data) { | |
| 160 | 160 | if (data.success) { |
| 161 | 161 | $("#verName").append(data.data); |
| 162 | 162 | } |