Showing
3 changed files
with
7 additions
and
3 deletions
@@ -67,9 +67,6 @@ module.exports = function (app) { | @@ -67,9 +67,6 @@ module.exports = function (app) { | ||
67 | //清除指定商品 | 67 | //清除指定商品 |
68 | app.post("/coupon/cleanPrdLimit", "CouponList_cleanPrdLimit"); | 68 | app.post("/coupon/cleanPrdLimit", "CouponList_cleanPrdLimit"); |
69 | 69 | ||
70 | - // 更新微信卡券H5链接 | ||
71 | - app.post("/coupon/updateH5Link", "CouponList_updateH5Link"); | ||
72 | - | ||
73 | app.get("/market/department/index", "marketing.CouponList.DepartmentIndex",function(){ | 70 | app.get("/market/department/index", "marketing.CouponList.DepartmentIndex",function(){ |
74 | this.$extend={ | 71 | this.$extend={ |
75 | moduleName:'营销管理', | 72 | moduleName:'营销管理', |
@@ -109,6 +109,7 @@ module.exports = { | @@ -109,6 +109,7 @@ module.exports = { | ||
109 | url: "/coupon/updateH5Link", | 109 | url: "/coupon/updateH5Link", |
110 | params: { | 110 | params: { |
111 | h5Link: {type: String}, | 111 | h5Link: {type: String}, |
112 | + miniappPages: {type: String}, | ||
112 | cardId: {type: String}, | 113 | cardId: {type: String}, |
113 | publicNumberCode: {type: Number} | 114 | publicNumberCode: {type: Number} |
114 | } | 115 | } |
@@ -387,6 +387,12 @@ | @@ -387,6 +387,12 @@ | ||
387 | <input id="h5Link" class="form-control panel-input" value="{{h5Link}}" type="text" placeholder="h5链接"> | 387 | <input id="h5Link" class="form-control panel-input" value="{{h5Link}}" type="text" placeholder="h5链接"> |
388 | </div> | 388 | </div> |
389 | </div> | 389 | </div> |
390 | + <div class="form-group"> | ||
391 | + <label class="col-sm-2 control-label">小程序入口(首页=pages/index/index)</label> | ||
392 | + <div class="col-sm-8"> | ||
393 | + <input id="miniappPages" class="form-control panel-input" value="{{miniappPages}}" type="text" placeholder="小程序入口(首页=pages/index/index)"> | ||
394 | + </div> | ||
395 | + </div> | ||
390 | </div> | 396 | </div> |
391 | </script> | 397 | </script> |
392 | 398 |
-
Please register or login to post a comment