Authored by weiqingting

提交

@@ -5,29 +5,29 @@ @@ -5,29 +5,29 @@
5 5
6 module.exports=function(app) { 6 module.exports=function(app) {
7 7
8 - /*图标管理首页*/  
9 - app.get("/operations/icon/index","operations.icon.Index", function () {  
10 - this.$extend = {  
11 - moduleName: "图标管理",  
12 - pageName: "图标管理"  
13 - }  
14 - }); 8 + // /*图标管理首页*/
  9 + // app.get("/operations/icon/index","operations.icon.Index", function () {
  10 + // this.$extend = {
  11 + // moduleName: "图标管理",
  12 + // pageName: "图标管理"
  13 + // }
  14 + // });
15 15
16 - /*列表*/  
17 - app.post("/icon/getList","icon_getList"); 16 + // /*列表*/
  17 + // app.post("/icon/getList","icon_getList");
18 18
19 - /*添加图标*/  
20 - app.post("/icon/addIcon","icon_addIcon"); 19 + // /*添加图标*/
  20 + // app.post("/icon/addIcon","icon_addIcon");
21 21
22 - /*根据ID获取图标信息*/  
23 - app.post("/icon/getOneIcon","icon_getOneIcon"); 22 + // /*根据ID获取图标信息*/
  23 + // app.post("/icon/getOneIcon","icon_getOneIcon");
24 24
25 - /*更新图标信息*/  
26 - app.post("/icon/updateIcon","icon_updateIcon"); 25 + // /*更新图标信息*/
  26 + // app.post("/icon/updateIcon","icon_updateIcon");
27 27
28 - /*开启图标入口*/  
29 - app.post("/icon/publishIcon","icon_publishIcon"); 28 + // /*开启图标入口*/
  29 + // app.post("/icon/publishIcon","icon_publishIcon");
30 30
31 - /*关闭图标信息入口*/  
32 - app.post("/icon/closeIcon","icon_closeIcon"); 31 + // /*关闭图标信息入口*/
  32 + // app.post("/icon/closeIcon","icon_closeIcon");
33 } 33 }
@@ -5,42 +5,42 @@ @@ -5,42 +5,42 @@
5 5
6 module.exports = function (app) { 6 module.exports = function (app) {
7 7
8 - /*活动分享管理首页*/  
9 - app.get("/operations/webshare/index", "operations.webshare.Index", function () {  
10 - this.$extend = {  
11 - moduleName: "活动分享管理",  
12 - pageName: "活动分享列表管理"  
13 - }  
14 - });  
15 -  
16 - /*添加活动分享页面*/  
17 - app.get("/operations/webshare/add", "operations.webshare.Edit", function () {  
18 - this.$extend = {  
19 - moduleName: "活动分享管理",  
20 - pageName: "添加活动分享",  
21 - url: "/webShare/addWebShare"  
22 - }  
23 - });  
24 -  
25 - /*编辑活动分享*/  
26 - app.get("/operations/webshare/edit/:id", "operations.webshare.Edit", function (req) {  
27 - this.$extend = {  
28 - moduleName: "活动分享管理",  
29 - pageName: "编辑活动分享",  
30 - id: req.params.id,  
31 - url: "/webShare/updateWebShare"  
32 - }  
33 - });  
34 -  
35 - /*首页列表*/  
36 - app.post("/webShare/getWebShareList", "webshare_getWebShareList");  
37 -  
38 - /*新增活动分享 [注意在shareImage加上客户端需要的imageView参数]*/  
39 - app.post("/webShare/addWebShare", "webshare_addWebShare");  
40 -  
41 - /*更新活动分享*/  
42 - app.post("/webShare/updateWebShare", "webshare_updateWebShare");  
43 -  
44 - /*根据id查询数据*/  
45 - app.post("/webShare/selectWebShare", "webshare_selectWebShare"); 8 + // /*活动分享管理首页*/
  9 + // app.get("/operations/webshare/index", "operations.webshare.Index", function () {
  10 + // this.$extend = {
  11 + // moduleName: "活动分享管理",
  12 + // pageName: "活动分享列表管理"
  13 + // }
  14 + // });
  15 +
  16 + // /*添加活动分享页面*/
  17 + // app.get("/operations/webshare/add", "operations.webshare.Edit", function () {
  18 + // this.$extend = {
  19 + // moduleName: "活动分享管理",
  20 + // pageName: "添加活动分享",
  21 + // url: "/webShare/addWebShare"
  22 + // }
  23 + // });
  24 +
  25 + // /*编辑活动分享*/
  26 + // app.get("/operations/webshare/edit/:id", "operations.webshare.Edit", function (req) {
  27 + // this.$extend = {
  28 + // moduleName: "活动分享管理",
  29 + // pageName: "编辑活动分享",
  30 + // id: req.params.id,
  31 + // url: "/webShare/updateWebShare"
  32 + // }
  33 + // });
  34 +
  35 + // /*首页列表*/
  36 + // app.post("/webShare/getWebShareList", "webshare_getWebShareList");
  37 +
  38 + // /*新增活动分享 [注意在shareImage加上客户端需要的imageView参数]*/
  39 + // app.post("/webShare/addWebShare", "webshare_addWebShare");
  40 +
  41 + // /*更新活动分享*/
  42 + // app.post("/webShare/updateWebShare", "webshare_updateWebShare");
  43 +
  44 + // /*根据id查询数据*/
  45 + // app.post("/webShare/selectWebShare", "webshare_selectWebShare");
46 } 46 }
@@ -5,23 +5,23 @@ @@ -5,23 +5,23 @@
5 5
6 module.exports=function(app) { 6 module.exports=function(app) {
7 7
8 - /*图片包首页*/  
9 - app.get("/operations/icon/ziplist","operations.ziplist.Index", function () {  
10 - this.$extend = {  
11 - moduleName: "图片包管理",  
12 - pageName: "图片包管理"  
13 - }  
14 - }); 8 + // /*图片包首页*/
  9 + // app.get("/operations/icon/ziplist","operations.ziplist.Index", function () {
  10 + // this.$extend = {
  11 + // moduleName: "图片包管理",
  12 + // pageName: "图片包管理"
  13 + // }
  14 + // });
15 15
16 - /*列表*/  
17 - app.post("/icon/getZipList","ziplist_getZipList"); 16 + // /*列表*/
  17 + // app.post("/icon/getZipList","ziplist_getZipList");
18 18
19 - /*上传图片包*/  
20 - app.post("/icon/addZip","ziplist_addZip"); 19 + // /*上传图片包*/
  20 + // app.post("/icon/addZip","ziplist_addZip");
21 21
22 - /*启用图片包*/  
23 - app.post("/icon/publishZip","ziplist_publishZip"); 22 + // /*启用图片包*/
  23 + // app.post("/icon/publishZip","ziplist_publishZip");
24 24
25 - /*关闭图片包*/  
26 - app.post("/icon/closeZip","ziplist_closeZip"); 25 + // /*关闭图片包*/
  26 + // app.post("/icon/closeZip","ziplist_closeZip");
27 } 27 }
@@ -5,29 +5,29 @@ @@ -5,29 +5,29 @@
5 5
6 module.exports=function(app) { 6 module.exports=function(app) {
7 7
8 - /*图标管理首页*/  
9 - app.get("/operations/icon/index","operations.icon.Index", function () {  
10 - this.$extend = {  
11 - moduleName: "图标管理",  
12 - pageName: "图标管理"  
13 - }  
14 - }); 8 + // /*图标管理首页*/
  9 + // app.get("/operations/icon/index","operations.icon.Index", function () {
  10 + // this.$extend = {
  11 + // moduleName: "图标管理",
  12 + // pageName: "图标管理"
  13 + // }
  14 + // });
15 15
16 - /*列表*/  
17 - app.post("/icon/getList","icon_getList"); 16 + // /*列表*/
  17 + // app.post("/icon/getList","icon_getList");
18 18
19 - /*添加图标*/  
20 - app.post("/icon/addIcon","icon_addIcon"); 19 + // /*添加图标*/
  20 + // app.post("/icon/addIcon","icon_addIcon");
21 21
22 - /*根据ID获取图标信息*/  
23 - app.post("/icon/getOneIcon","icon_getOneIcon"); 22 + // /*根据ID获取图标信息*/
  23 + // app.post("/icon/getOneIcon","icon_getOneIcon");
24 24
25 - /*更新图标信息*/  
26 - app.post("/icon/updateIcon","icon_updateIcon"); 25 + // /*更新图标信息*/
  26 + // app.post("/icon/updateIcon","icon_updateIcon");
27 27
28 - /*开启图标入口*/  
29 - app.post("/icon/publishIcon","icon_publishIcon"); 28 + // /*开启图标入口*/
  29 + // app.post("/icon/publishIcon","icon_publishIcon");
30 30
31 - /*关闭图标信息入口*/  
32 - app.post("/icon/closeIcon","icon_closeIcon"); 31 + // /*关闭图标信息入口*/
  32 + // app.post("/icon/closeIcon","icon_closeIcon");
33 } 33 }
@@ -5,42 +5,42 @@ @@ -5,42 +5,42 @@
5 5
6 module.exports = function (app) { 6 module.exports = function (app) {
7 7
8 - /*活动分享管理首页*/  
9 - app.get("/operations/webshare/index", "operations.webshare.Index", function () {  
10 - this.$extend = {  
11 - moduleName: "活动分享管理",  
12 - pageName: "活动分享列表管理"  
13 - }  
14 - });  
15 -  
16 - /*添加活动分享页面*/  
17 - app.get("/operations/webshare/add", "operations.webshare.Edit", function () {  
18 - this.$extend = {  
19 - moduleName: "活动分享管理",  
20 - pageName: "添加活动分享",  
21 - url: "/webShare/addWebShare"  
22 - }  
23 - });  
24 -  
25 - /*编辑活动分享*/  
26 - app.get("/operations/webshare/edit/:id", "operations.webshare.Edit", function (req) {  
27 - this.$extend = {  
28 - moduleName: "活动分享管理",  
29 - pageName: "编辑活动分享",  
30 - id: req.params.id,  
31 - url: "/webShare/updateWebShare"  
32 - }  
33 - });  
34 -  
35 - /*首页列表*/  
36 - app.post("/webShare/getWebShareList", "webshare_getWebShareList");  
37 -  
38 - /*新增活动分享 [注意在shareImage加上客户端需要的imageView参数]*/  
39 - app.post("/webShare/addWebShare", "webshare_addWebShare");  
40 -  
41 - /*更新活动分享*/  
42 - app.post("/webShare/updateWebShare", "webshare_updateWebShare");  
43 -  
44 - /*根据id查询数据*/  
45 - app.post("/webShare/selectWebShare", "webshare_selectWebShare"); 8 + // /*活动分享管理首页*/
  9 + // app.get("/operations/webshare/index", "operations.webshare.Index", function () {
  10 + // this.$extend = {
  11 + // moduleName: "活动分享管理",
  12 + // pageName: "活动分享列表管理"
  13 + // }
  14 + // });
  15 +
  16 + // /*添加活动分享页面*/
  17 + // app.get("/operations/webshare/add", "operations.webshare.Edit", function () {
  18 + // this.$extend = {
  19 + // moduleName: "活动分享管理",
  20 + // pageName: "添加活动分享",
  21 + // url: "/webShare/addWebShare"
  22 + // }
  23 + // });
  24 +
  25 + // /*编辑活动分享*/
  26 + // app.get("/operations/webshare/edit/:id", "operations.webshare.Edit", function (req) {
  27 + // this.$extend = {
  28 + // moduleName: "活动分享管理",
  29 + // pageName: "编辑活动分享",
  30 + // id: req.params.id,
  31 + // url: "/webShare/updateWebShare"
  32 + // }
  33 + // });
  34 +
  35 + // /*首页列表*/
  36 + // app.post("/webShare/getWebShareList", "webshare_getWebShareList");
  37 +
  38 + // /*新增活动分享 [注意在shareImage加上客户端需要的imageView参数]*/
  39 + // app.post("/webShare/addWebShare", "webshare_addWebShare");
  40 +
  41 + // /*更新活动分享*/
  42 + // app.post("/webShare/updateWebShare", "webshare_updateWebShare");
  43 +
  44 + // /*根据id查询数据*/
  45 + // app.post("/webShare/selectWebShare", "webshare_selectWebShare");
46 } 46 }
@@ -5,23 +5,23 @@ @@ -5,23 +5,23 @@
5 5
6 module.exports=function(app) { 6 module.exports=function(app) {
7 7
8 - /*图片包首页*/  
9 - app.get("/operations/icon/ziplist","operations.ziplist.Index", function () {  
10 - this.$extend = {  
11 - moduleName: "图片包管理",  
12 - pageName: "图片包管理"  
13 - }  
14 - }); 8 + // /*图片包首页*/
  9 + // app.get("/operations/icon/ziplist","operations.ziplist.Index", function () {
  10 + // this.$extend = {
  11 + // moduleName: "图片包管理",
  12 + // pageName: "图片包管理"
  13 + // }
  14 + // });
15 15
16 - /*列表*/  
17 - app.post("/icon/getZipList","ziplist_getZipList"); 16 + // /*列表*/
  17 + // app.post("/icon/getZipList","ziplist_getZipList");
18 18
19 - /*上传图片包*/  
20 - app.post("/icon/addZip","ziplist_addZip"); 19 + // /*上传图片包*/
  20 + // app.post("/icon/addZip","ziplist_addZip");
21 21
22 - /*启用图片包*/  
23 - app.post("/icon/publishZip","ziplist_publishZip"); 22 + // /*启用图片包*/
  23 + // app.post("/icon/publishZip","ziplist_publishZip");
24 24
25 - /*关闭图片包*/  
26 - app.post("/icon/closeZip","ziplist_closeZip"); 25 + // /*关闭图片包*/
  26 + // app.post("/icon/closeZip","ziplist_closeZip");
27 } 27 }