Blame view
mock/prod.js
3.53 KB
0bd81688e auto commit the c... |
1 2 3 4 5 6 7 8 9 10 11 12 |
import Mock from 'mockjs' // import logoPath from "~@/assets/img/yp_logo.jpeg" const List = [] const count = 20 const baseContent = '<p>I am testing data, I am testing data.</p><p></p>' // const image_uri = logoPath const image_uri = 'https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif' for (let i = 0; i < count; i++) { List.push(Mock.mock({ |
a86b16bba auto commit the c... |
13 14 15 |
pid: '@increment', //产品id pname: '01-8701志平防蓝光-防辐射电脑网课眼镜,TR90弹性漆,近视镜,青春潮流', //产品名移交 timestamp: +Mock.Random.date('T'), //产品时间 |
0bd81688e auto commit the c... |
16 17 |
shoper: '@first', //所属工厂 salescount: '@first', //购买次数 |
a86b16bba auto commit the c... |
18 19 20 21 22 23 24 25 |
importance: '@integer(1, 3)', //排序-权重 prod_info_weight: '@integer(1, 3)', //参数--->重量 prod_info_leg_long: '@integer(1, 3)', //参数--->腿长 prod_info_glass_width: '@integer(1, 3)', //参数--->镜宽 prod_info_glass_height: '@integer(1, 3)', //参数--->镜高 prod_info_frame_width: '@integer(1, 3)', //参数--->框宽 prod_info_frame_height: '@integer(1, 3)', //参数--->框高 prod_info_norse_width: '@integer(1, 3)', //参数--->鼻宽 |
0bd81688e auto commit the c... |
26 |
prod_info_window_pic: [], //鼻宽 |
a86b16bba auto commit the c... |
27 28 29 30 31 32 33 34 35 |
image_uri: image_uri, prod_memo: '', // 'type|1': ['CN', 'US', 'JP', 'EU'], // 'status|1': ['published', 'draft'], 'type|1': ['CN', 'US', 'JP', 'EU'], //本产品销售区域 'prod_status|1': ['published', 'draft'], //状态,上线-下线 judge_list: [], //评论管理 sku_list: [], //sku清单 sku_attr: [], //sku属性 |
0bd81688e auto commit the c... |
36 37 38 39 40 41 42 43 44 45 |
})) } export default [{ url: '/yp/prod/list', type: 'post', response: config => { const { importance, type, |
a86b16bba auto commit the c... |
46 |
pname, |
0bd81688e auto commit the c... |
47 48 |
page = 1, limit = 20, |
a86b16bba auto commit the c... |
49 |
// sort |
0bd81688e auto commit the c... |
50 51 52 53 54 |
} = config.query let mockList = List.filter(item => { if (importance && item.importance !== +importance) return false if (type && item.type !== type) return false |
a86b16bba auto commit the c... |
55 |
if (pname && item.pname.indexOf(pname) < 0) return false |
0bd81688e auto commit the c... |
56 57 |
return true }) |
a86b16bba auto commit the c... |
58 59 60 |
// if (sort === '-pid') { // mockList = mockList.reverse() // } |
0bd81688e auto commit the c... |
61 62 63 64 65 66 67 68 69 70 71 |
const pageList = mockList.filter((item, index) => index < limit * page && index >= limit * (page - 1)) return { code: 20000, data: { total: mockList.length, items: pageList } } } }, |
0bd81688e auto commit the c... |
72 73 74 75 76 |
{ url: '/yp/prod/detail', type: 'get', response: config => { const { |
a86b16bba auto commit the c... |
77 |
pid |
0bd81688e auto commit the c... |
78 79 |
} = config.query for (const prod of List) { |
a86b16bba auto commit the c... |
80 |
if (prod.pid === +pid) { |
0bd81688e auto commit the c... |
81 82 83 84 85 86 87 88 |
return { code: 20000, data: prod } } } } }, |
a86b16bba auto commit the c... |
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
// { // url: '/yp/prod/pv', // type: 'get', // response: _ => { // return { // code: 20000, // data: { // pvData: [{ // key: 'PC', // pv: 1024 // }, // { // key: 'mobile', // pv: 1024 // }, // { // key: 'ios', // pv: 1024 // }, // { // key: 'android', // pv: 1024 // } // ] // } // } // } // }, |
0bd81688e auto commit the c... |
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
{ url: '/yp/prod/create', type: 'post', response: _ => { return { code: 20000, data: 'success' } } }, { url: '/yp/prod/update', type: 'post', response: _ => { return { code: 20000, data: 'success' } } } ] |