Showing
3 changed files
with
12 additions
and
51 deletions
@@ -15,7 +15,7 @@ var basicInfohtml = '', | @@ -15,7 +15,7 @@ var basicInfohtml = '', | ||
15 | }, | 15 | }, |
16 | grade: { | 16 | grade: { |
17 | '1': '是', | 17 | '1': '是', |
18 | - 'null': '否' | 18 | + '0': '否' |
19 | }, | 19 | }, |
20 | isOutLets: { | 20 | isOutLets: { |
21 | 'Y': '是', | 21 | 'Y': '是', |
@@ -52,13 +52,16 @@ var basicInfohtml = '', | @@ -52,13 +52,16 @@ var basicInfohtml = '', | ||
52 | 6: '秋冬' | 52 | 6: '秋冬' |
53 | }, | 53 | }, |
54 | seasons: { | 54 | seasons: { |
55 | - 0: '四季', | ||
56 | - 1: '春', | ||
57 | - 2: '夏', | ||
58 | - 3: '秋', | ||
59 | - 4: '冬', | ||
60 | - 5: '春夏', | ||
61 | - 6: '秋冬' | 55 | + 'seasons': '四季', |
56 | + 'spring': '春', | ||
57 | + 'summer': '夏', | ||
58 | + 'autumn': '秋', | ||
59 | + 'winter': '冬' | ||
60 | + }, | ||
61 | + isVip: { | ||
62 | + 'Y': '是', | ||
63 | + 'N': '否', | ||
64 | + 'B': '品牌设置' | ||
62 | } | 65 | } |
63 | }, | 66 | }, |
64 | basicInfo = NETSALEDATA.baseProductInfo.baseProduct || '', | 67 | basicInfo = NETSALEDATA.baseProductInfo.baseProduct || '', |
@@ -5,48 +5,6 @@ exports.domain = require('../config/common.js').domain; | @@ -5,48 +5,6 @@ exports.domain = require('../config/common.js').domain; | ||
5 | 5 | ||
6 | //商品管理路由配置 | 6 | //商品管理路由配置 |
7 | exports.res = [{ | 7 | exports.res = [{ |
8 | - //商品审核 | ||
9 | - route: '/supplier/baseaudit/index', | ||
10 | - method: 'GET', | ||
11 | - view: 'pages/goods/index', | ||
12 | - data: { | ||
13 | - bottons: '{"detail":true}', | ||
14 | - gridurl: '/goods/review/getList', | ||
15 | - searchStatus: [{ | ||
16 | - name: "未审核", | ||
17 | - value: "100" | ||
18 | - }, { | ||
19 | - name: "已通过", | ||
20 | - value: "200" | ||
21 | - }, { | ||
22 | - name: "驳回", | ||
23 | - value: "300" | ||
24 | - }], | ||
25 | - searchJIT: true, | ||
26 | - pageTitle: "商品审核" | ||
27 | - }, | ||
28 | - src: '/goods/index' | ||
29 | - }, { | ||
30 | - route: '/goods/review/getList', | ||
31 | - method: 'POST', | ||
32 | - url: '/goods/review/getReviewList', | ||
33 | - params: [{ | ||
34 | - name: 'skn', | ||
35 | - type: 'String' | ||
36 | - }, { | ||
37 | - name: 'brandName', | ||
38 | - type: 'String' | ||
39 | - }, { | ||
40 | - name: 'storeName', | ||
41 | - type: 'String' | ||
42 | - }, { | ||
43 | - name: 'status', | ||
44 | - type: 'String' | ||
45 | - }, { | ||
46 | - name: 'jit', | ||
47 | - type: 'String' | ||
48 | - }] | ||
49 | - }, { | ||
50 | //网销信息 -> 网销信息页面渲染 | 8 | //网销信息 -> 网销信息页面渲染 |
51 | route: '/goods/netsale/index', | 9 | route: '/goods/netsale/index', |
52 | method: 'GET', | 10 | method: 'GET', |
@@ -84,7 +84,7 @@ | @@ -84,7 +84,7 @@ | ||
84 | <div class="col-sm-3">销售价:[[salesPrice]]</div> | 84 | <div class="col-sm-3">销售价:[[salesPrice]]</div> |
85 | </div> | 85 | </div> |
86 | <div class="form-group"> | 86 | <div class="form-group"> |
87 | - <div class="col-sm-3">是否VIP:</div> | 87 | + <div class="col-sm-3">是否VIP:[[isVip]]</div> |
88 | <div class="col-sm-3">预计上架时间:[[expectShelfTime]]</div> | 88 | <div class="col-sm-3">预计上架时间:[[expectShelfTime]]</div> |
89 | </div> | 89 | </div> |
90 | </script> | 90 | </script> |
-
Please register or login to post a comment