goods.js
3.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
module.exports=function(app) {
/*网销信息页面渲染*/
app.get("/goods/netsale/index","goods.netsale.Index");
/*列表数据*/
app.post("/goods/netsale/getList","goods_queryNetSaleInforList");
/*tab*/
app.post("/goods/product/queryTabProductNum","goods_queryTabProductNum");
/*批量skn处理*/
app.post("/goods/product/updateProductSknTimingInfo","goods_updateProductSknTimingInfo");
/*skc上下架*/
app.post("/goods/product/updateGoodsStatus","goods_updateGoodsStatus");
/*skc上下架*/
app.post("/goods/product/updateProductSkuStatus","goods_updateProductSkuStatus");
/*批量页面渲染*/
app.post("/goods/netsale/batch","goods.netsale.Batch");
/*查看页面渲染*/
app.get("/goods/netsale/info/:param","goods.netsale.Info");
/*编辑页面渲染*/
app.get("/goods/netsale/edit/:param","goods.netsale.Edit");
/*编辑页面渲染*/
app.get("/goods/audit/info/:param","goods.audit.Info");
/*查询网销详情*/
app.post("/goods/netsale/getdata","goods_getNetSaleInfo");
/*保存完整网销信息*/
app.post("/goods/product/saveNetSaleAllInfo","goods_saveNetSaleAllInfo");
/*保存基本信息接口*/
app.post("/goods/product/saveNetSaleBaseInfo","goods_saveNetSaleBaseInfo");
/*保存上架后补全信息*/
app.post("/goods/product/saveAfterSaleInfo","goods_saveAfterSaleInfo");
/*查询补全信息*/
app.post("/goods/product/queryAttributesByConf","goods_queryAttributesByConf");
/*通过品牌获取店铺*/
app.post("/goods/ShopsRest/queryShopsByBrandId'","goods_queryShopsByBrandId");
/*查询制作工艺列表*/
app.post("/goods/product/queryMakingProcess","goods_queryMakingProcess");
/*查询品牌款型系列列表*/
app.post("/goods/brandSeries/queryAll4Select","goods_queryAll4Select");
/*品牌关联*/
app.post("/goods/product/saveBrandRelation","goods_saveBrandRelation");
/*保存视频接口*/
app.post("/goods/product/saveNetSaleVideo","goods_saveNetSaleVideo");
/*关联逛*/
app.post("/goods/article/queryArticlesBySKN","goods_queryArticlesBySKN");
/*品牌关联列表*/
app.post("/goods/brands/queryBrandsByStatus","goods_queryBrandsByStatus");
/*调用图片*/
app.post("/productPhoto/queryProductPhotoList","goods_queryProductPhotoList");
/*保存搜索顺序*/
app.post("/netSale/saveSearchSort","goods_saveSearchSort");
/*查找热搜词*/
app.post("/netSale/queryHotSearchTerms","goods_queryHotSearchTerms");
/*查找洗涤提示*/
app.post("/netSale/getAll4Select","goods_getAll4Select");
/*查找材质参数*/
app.post("/netSale/queryAllBySortId4Select","goods_queryAllBySortId4Select");
/*查找所有商品参数信息 //暂时没用*/
app.post("/netSale/queryAllGoodsParams",["goods_getAll4Select","goods_queryAllBySortId4Select"]);
/*保存搜索关键词*/
app.post("/netSale/saveNetSaleSearchKeys","goods_saveNetSaleSearchKeys");
/*保存商品参数*/
app.post("/netSale/saveProductParam","goods_saveProductParam");
/*商品描述*/
app.post("/product/saveProductDesc","goods_saveProductDesc");
/*小编推荐*/
app.post("/product/saveNetSaleRecommend","goods_saveNetSaleRecommend");
/*查询搭配列表*/
app.post("/collocation/selectCollocationListBySkn","goods_selectCollocationListBySkn");
/*获取单个商品搭配信息*/
app.post("/collocation/selectCollocationById","goods_selectCollocationById");
/*添加单个搭配*/
app.post("/collocation/insertCollocation","goods_insertCollocation");
/*更新单个搭配*/
app.post("/collocation/updateCollocation","goods_updateCollocation");
/*删除单个搭配*/
app.post("/collocation/delCollocationById","goods_delCollocationById");
/*单独维护封面信息*/
app.post("/product/manageProductImg","goods_manageProductImg");
/*小编推荐*/
app.post("/guang/article/queryArticlesBySKN","goods_queryArticlesBySKN");
}