jufubao-mall 2.0.16-beta2 → 2.0.16-beta4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/JfbMallNewShopList/JfbMallNewShopList.vue +0 -6
- package/src/components/JfbMallNewShopList/cusAttr/content.js +2 -2
- package/src/components/JfbMallShop/JfbMallShop.vue +2 -2
- package/src/components/JfbMallShop/Mock.js +233 -2
- package/src/components/JfbMallShop/cusAttr/content.js +2 -2
package/package.json
CHANGED
|
@@ -176,11 +176,6 @@
|
|
|
176
176
|
}, 500)
|
|
177
177
|
}
|
|
178
178
|
},
|
|
179
|
-
|
|
180
|
-
searchFilterList(val){
|
|
181
|
-
debugger
|
|
182
|
-
}
|
|
183
|
-
|
|
184
179
|
},
|
|
185
180
|
filters:{
|
|
186
181
|
filterLabels(val){
|
|
@@ -294,7 +289,6 @@
|
|
|
294
289
|
if(gCPVal(container,'showStoreAddress','Y') === 'Y') cusContent.push('address'); //门店地址
|
|
295
290
|
if(gCPVal(container,'showStoreDistance','Y') === 'Y') cusContent.push('distance'); //地址
|
|
296
291
|
if(gCPVal(container,'showStorePrice','Y') === 'Y') cusContent.push('price'); // 折扣/价格
|
|
297
|
-
cusContent.push('image');
|
|
298
292
|
this.cusContent = cusContent;
|
|
299
293
|
|
|
300
294
|
//style
|
|
@@ -300,10 +300,10 @@ export default (data, gValue, gColor, oldData={})=>{
|
|
|
300
300
|
{value:'jhd', label: '聚好兑', input:'',def:'聚好兑', check: false,placeholder:'服务类型为支持核销时使用'},
|
|
301
301
|
{value:'wb', label: '扫一扫',input:'',def:'扫一扫',check: false,placeholder:'服务类型为支持核销时使用'},
|
|
302
302
|
{value:'qp', label: '快捷码',input:'',def:'去提货',check: false,placeholder:'服务类型为支持核销时使用'},
|
|
303
|
-
{value:'seat', label: '在线选座',input:'',def:'
|
|
303
|
+
{value:'seat', label: '在线选座',input:'',def:'去订票',check: false,placeholder:''},
|
|
304
304
|
{value:'code', label: '电子码',input:'',def:'电子码',check: false,placeholder:''},
|
|
305
305
|
{value:'hdself', label: '到店自取',input:'',def:'去下单',check: false,placeholder:'服务类型为小时达到店时使用'},
|
|
306
|
-
{value:'travel', label: '旅游门票',input:'',def:'
|
|
306
|
+
{value:'travel', label: '旅游门票',input:'',def:'去订票',check: false,placeholder:''}
|
|
307
307
|
])
|
|
308
308
|
},
|
|
309
309
|
},
|
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
this.takePath = getContainerPropsValue(container, 'content.takePath', {value: ""}).value;
|
|
491
491
|
this.showMovie = gCPVal(container, 'showMovie', 'Y');
|
|
492
492
|
this.movieName = gCPVal(container, 'movieName', '在线选座');
|
|
493
|
-
this.movieBtnName = gCPVal(container, 'movieBtnName', '
|
|
493
|
+
this.movieBtnName = gCPVal(container, 'movieBtnName', '去订票');
|
|
494
494
|
this.moviePath = getContainerPropsValue(container, 'content.moviePath', {value: ""}).value;
|
|
495
495
|
this.showFood = gCPVal(container, 'showFood', 'Y');
|
|
496
496
|
this.foodName = gCPVal(container, 'foodName', '到店自取');
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
this.foodPath = getContainerPropsValue(container, 'content.foodPath', {value: ""}).value;
|
|
499
499
|
this.showTravel = gCPVal(container, 'showTravel', 'Y');
|
|
500
500
|
this.travelName = gCPVal(container, 'travelName', '旅游门店');
|
|
501
|
-
this.travelBtnName = gCPVal(container, 'travelBtnName', '
|
|
501
|
+
this.travelBtnName = gCPVal(container, 'travelBtnName', '去订票');
|
|
502
502
|
this.travelPath = getContainerPropsValue(container, 'content.travelPath', {value: ""}).value;
|
|
503
503
|
this.showCode = gCPVal(container, 'showCode', 'Y');
|
|
504
504
|
this.productInfoPath = getContainerPropsValue(container, 'content.productInfoPath', {value: ""}).value;
|
|
@@ -5,7 +5,26 @@ module.exports = {
|
|
|
5
5
|
partner_id: "161",
|
|
6
6
|
supplier_id: "",
|
|
7
7
|
consume_mode: ["SELL"],
|
|
8
|
-
|
|
8
|
+
consume_options: [
|
|
9
|
+
{ consume_mode: "WB", desc: "到店扫码消费任意金额可用" },
|
|
10
|
+
{ consume_mode: "JHD", desc: "到店消费任意金额可用" },
|
|
11
|
+
{ consume_mode: "QP", desc: "到店展码消费任意金额可用" },
|
|
12
|
+
{ consume_mode: "SEAT", desc: "在线订票选座" },
|
|
13
|
+
{ consume_mode: "HDSELF", desc: "提前点餐,到店自取" },
|
|
14
|
+
{ consume_mode: "TRAVEL", desc: "在线订票" },
|
|
15
|
+
{ consume_mode: "CODE" }
|
|
16
|
+
],
|
|
17
|
+
consume_type: [
|
|
18
|
+
"CV",
|
|
19
|
+
"WB",
|
|
20
|
+
"CR",
|
|
21
|
+
"POS",
|
|
22
|
+
"JHD",
|
|
23
|
+
"QP",
|
|
24
|
+
"movie",
|
|
25
|
+
"xsd",
|
|
26
|
+
"travel"
|
|
27
|
+
],
|
|
9
28
|
default_consume_type: "CV",
|
|
10
29
|
is_support_jhd: true,
|
|
11
30
|
resource_shop_name: "福司令渠道门店",
|
|
@@ -22,7 +41,8 @@ module.exports = {
|
|
|
22
41
|
street_name: "燕郊镇",
|
|
23
42
|
address: "河北廊坊燕郊润旭",
|
|
24
43
|
phone: "18843854566",
|
|
25
|
-
business_time:
|
|
44
|
+
business_time:
|
|
45
|
+
'{"type":"","custom":{"end":"22:00","start":"08:00","weeks":[],"method":""}}',
|
|
26
46
|
business_time_json:
|
|
27
47
|
'{"type":"","custom":{"end":"","start":"","weeks":[],"method":""}}',
|
|
28
48
|
resource_shop_id: "3185468",
|
|
@@ -51,5 +71,216 @@ module.exports = {
|
|
|
51
71
|
"eyJyZXNvdXJjZV9zaG9wX2lkIjoiMzE4NTQ2OCIsInNob3BfaWQiOiI1MjY0OCJ9"
|
|
52
72
|
},
|
|
53
73
|
request_id: "8f0a57d7a475f96b"
|
|
74
|
+
},
|
|
75
|
+
getShopProductList: {
|
|
76
|
+
total_size: 106,
|
|
77
|
+
next_page_token: "2",
|
|
78
|
+
list: [
|
|
79
|
+
{
|
|
80
|
+
product_id: 60030789,
|
|
81
|
+
product_type: "good",
|
|
82
|
+
brand_id: 100003,
|
|
83
|
+
brand_name: "品牌jls0519",
|
|
84
|
+
list_title: "价格日历(185)",
|
|
85
|
+
status: "ok",
|
|
86
|
+
sale_num: 3953,
|
|
87
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20240314/a9121a540e92f35ec881f883daf6028c.jpg",
|
|
88
|
+
sale_price: 4990,
|
|
89
|
+
vip_price: 0,
|
|
90
|
+
market_price: 4990,
|
|
91
|
+
market_tags: ["hot", "new", "rec"],
|
|
92
|
+
promo_price: 0,
|
|
93
|
+
tags: [],
|
|
94
|
+
show_prices: [
|
|
95
|
+
{ p: 4990, n: "", t: "S" },
|
|
96
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
product_id: 60039044,
|
|
101
|
+
product_type: "network",
|
|
102
|
+
brand_id: 10953,
|
|
103
|
+
brand_name: "lxn测试影院",
|
|
104
|
+
list_title: "测试商品",
|
|
105
|
+
status: "ok",
|
|
106
|
+
sale_num: 10,
|
|
107
|
+
thumb:
|
|
108
|
+
"http://file.yiqida.cn/upload/2021-06-15/40/04/408b5f26041371ffc34811e64d03f1ce.jpg",
|
|
109
|
+
sale_price: 13,
|
|
110
|
+
vip_price: 0,
|
|
111
|
+
market_price: 10400,
|
|
112
|
+
market_tags: [],
|
|
113
|
+
promo_price: 0,
|
|
114
|
+
tags: [],
|
|
115
|
+
show_prices: [
|
|
116
|
+
{ p: 13, n: "", t: "S" },
|
|
117
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
product_id: 60030149,
|
|
122
|
+
product_type: "network",
|
|
123
|
+
brand_id: 100003,
|
|
124
|
+
brand_name: "品牌jls0519",
|
|
125
|
+
list_title: "生活服务商品",
|
|
126
|
+
status: "ok",
|
|
127
|
+
sale_num: 12,
|
|
128
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20231218/a23932368c009e3fb5ac10ab8f372bf6.jpeg",
|
|
129
|
+
sale_price: 2189,
|
|
130
|
+
vip_price: 0,
|
|
131
|
+
market_price: 3500,
|
|
132
|
+
market_tags: ["hot"],
|
|
133
|
+
promo_price: 0,
|
|
134
|
+
tags: [],
|
|
135
|
+
show_prices: [
|
|
136
|
+
{ p: 2189, n: "", t: "S" },
|
|
137
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
product_id: 60039052,
|
|
142
|
+
product_type: "card",
|
|
143
|
+
brand_id: 10953,
|
|
144
|
+
brand_name: "lxn测试影院",
|
|
145
|
+
list_title: "测试卡密1",
|
|
146
|
+
status: "ok",
|
|
147
|
+
sale_num: 2,
|
|
148
|
+
thumb:
|
|
149
|
+
"http://file.yiqida.cn/upload/2023/ef/64/ef8cdba8648ea84279dd930e889ed847.jpg",
|
|
150
|
+
sale_price: 15,
|
|
151
|
+
vip_price: 0,
|
|
152
|
+
market_price: 100,
|
|
153
|
+
market_tags: [],
|
|
154
|
+
promo_price: 0,
|
|
155
|
+
tags: [],
|
|
156
|
+
show_prices: [
|
|
157
|
+
{ p: 15, n: "", t: "S" },
|
|
158
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
product_id: 60038976,
|
|
163
|
+
product_type: "good",
|
|
164
|
+
brand_id: 14,
|
|
165
|
+
brand_name: "测试1111",
|
|
166
|
+
list_title: "商品【ppt】",
|
|
167
|
+
status: "ok",
|
|
168
|
+
sale_num: 5,
|
|
169
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20250729/7bfc6b91cf0674e9a84591f3a91d7309.jpeg",
|
|
170
|
+
sale_price: 10500,
|
|
171
|
+
vip_price: 0,
|
|
172
|
+
market_price: 10500,
|
|
173
|
+
market_tags: ["rec", "hot", "new", "tag1"],
|
|
174
|
+
promo_price: 0,
|
|
175
|
+
tags: [],
|
|
176
|
+
show_prices: [
|
|
177
|
+
{ p: 10500, n: "", t: "S" },
|
|
178
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
product_id: 60031161,
|
|
183
|
+
product_type: "network",
|
|
184
|
+
brand_id: 30000,
|
|
185
|
+
brand_name: "其他",
|
|
186
|
+
list_title: "直充测试3天卡",
|
|
187
|
+
status: "ok",
|
|
188
|
+
sale_num: 11,
|
|
189
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20240925/830662032dd8bbc616b1221c6b737ed9.jpeg",
|
|
190
|
+
sale_price: 134,
|
|
191
|
+
vip_price: 0,
|
|
192
|
+
market_price: 300,
|
|
193
|
+
market_tags: ["rec", "hot", "new"],
|
|
194
|
+
promo_price: 0,
|
|
195
|
+
tags: [],
|
|
196
|
+
show_prices: [
|
|
197
|
+
{ p: 134, n: "", t: "S" },
|
|
198
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
product_id: 60039053,
|
|
203
|
+
product_type: "network",
|
|
204
|
+
brand_id: 14,
|
|
205
|
+
brand_name: "测试1111",
|
|
206
|
+
list_title: "QQ普通会员1个月",
|
|
207
|
+
status: "ok",
|
|
208
|
+
sale_num: 0,
|
|
209
|
+
thumb:
|
|
210
|
+
"http://file.yiqida.cn/upload/2021-07-01/e0/7c/e02eb7167c72d8188cc9829779c2dc41.jpg",
|
|
211
|
+
sale_price: 795,
|
|
212
|
+
vip_price: 0,
|
|
213
|
+
market_price: 1000,
|
|
214
|
+
market_tags: ["rec", "hot", "new"],
|
|
215
|
+
promo_price: 0,
|
|
216
|
+
tags: [],
|
|
217
|
+
show_prices: [
|
|
218
|
+
{ p: 795, n: "", t: "S" },
|
|
219
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
product_id: 60032162,
|
|
224
|
+
product_type: "good",
|
|
225
|
+
brand_id: 14,
|
|
226
|
+
brand_name:
|
|
227
|
+
"测试1111就是考虑到极乐空间工商卡溜达鸡干撒卡拉季鲸打卡利发估计山卡拉电极法个",
|
|
228
|
+
list_title: "同城商品-多规格(核销)",
|
|
229
|
+
status: "ok",
|
|
230
|
+
sale_num: 139,
|
|
231
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20250107/37b016de24300cc74e8ebc23f0f3ce12.jpeg",
|
|
232
|
+
sale_price: 7600,
|
|
233
|
+
vip_price: 0,
|
|
234
|
+
market_price: 7600,
|
|
235
|
+
market_tags: ["rec", "hot", "new"],
|
|
236
|
+
promo_price: 0,
|
|
237
|
+
tags: [],
|
|
238
|
+
show_prices: [
|
|
239
|
+
{ p: 7600, n: "", t: "S" },
|
|
240
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
product_id: 60038977,
|
|
245
|
+
product_type: "good",
|
|
246
|
+
brand_id: 14,
|
|
247
|
+
brand_name: "测试1111",
|
|
248
|
+
list_title: "商品【ppt】多规格",
|
|
249
|
+
status: "ok",
|
|
250
|
+
sale_num: 4,
|
|
251
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20250729/4843dd391a5457e535afb6d0dd344557.jpeg",
|
|
252
|
+
sale_price: 10500,
|
|
253
|
+
vip_price: 0,
|
|
254
|
+
market_price: 10500,
|
|
255
|
+
market_tags: ["rec", "hot"],
|
|
256
|
+
promo_price: 0,
|
|
257
|
+
tags: [],
|
|
258
|
+
show_prices: [
|
|
259
|
+
{ p: 10500, n: "", t: "S" },
|
|
260
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
product_id: 60030267,
|
|
265
|
+
product_type: "network",
|
|
266
|
+
brand_id: 14,
|
|
267
|
+
brand_name: "测试1111",
|
|
268
|
+
list_title: "测试网络视听",
|
|
269
|
+
status: "ok",
|
|
270
|
+
sale_num: 120,
|
|
271
|
+
thumb: "https://sandbox-img5.jufubao.cn/uploads/20240104/6956d6640db2aac3b884e7164bf598ba.png",
|
|
272
|
+
sale_price: 1300,
|
|
273
|
+
vip_price: 0,
|
|
274
|
+
market_price: 2100,
|
|
275
|
+
market_tags: ["rec", "hot", "new"],
|
|
276
|
+
promo_price: 0,
|
|
277
|
+
tags: [],
|
|
278
|
+
show_prices: [
|
|
279
|
+
{ p: 1300, n: "", t: "S" },
|
|
280
|
+
{ p: 0, n: "工会会员价", t: "T" }
|
|
281
|
+
]
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
request_id: "8560c761aa7ca2eb"
|
|
54
285
|
}
|
|
55
286
|
};
|
|
@@ -223,7 +223,7 @@ export default function (data, gValue,gColor,oldData){
|
|
|
223
223
|
hidden: data.showMovie !== 'Y',
|
|
224
224
|
groupKey: 'content',
|
|
225
225
|
className: 'input80',
|
|
226
|
-
placeholder: "
|
|
226
|
+
placeholder: "去订票",
|
|
227
227
|
inline: false
|
|
228
228
|
},
|
|
229
229
|
{
|
|
@@ -320,7 +320,7 @@ export default function (data, gValue,gColor,oldData){
|
|
|
320
320
|
hidden: data.showTravel !== 'Y',
|
|
321
321
|
groupKey: 'content',
|
|
322
322
|
className: 'input80',
|
|
323
|
-
placeholder: "
|
|
323
|
+
placeholder: "去订票",
|
|
324
324
|
inline: false
|
|
325
325
|
},
|
|
326
326
|
{
|