jufubao-mall 2.0.20-beta6 → 2.0.20-beta8
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/JfbMallBrandHome/JfbMallBrandHome.vue +19 -15
- package/src/components/JfbMallBrandWall/JfbMallBrandWall.vue +27 -22
- package/src/components/JfbMallHomeProductList/JfbMallHomeProductList.vue +1 -1
- package/src/components/JfbMallProductInfo/JfbMallProductInfo.vue +27 -23
- package/src/components/JfbMallProductList/Api.js +3 -3
- package/src/components/JfbMallProductList/JfbMallProductList.vue +2 -3
- package/src/components/JfbMallProductList/Mock.js +4 -123
- package/src/components/JfbMallProductList/XdCateV1.vue +0 -1
- package/src/components/JfbMallProductList/XdCateV2.vue +16 -2
package/package.json
CHANGED
|
@@ -805,7 +805,7 @@
|
|
|
805
805
|
jfbRootExec("getBrandHomeInfo", {
|
|
806
806
|
vm: this,
|
|
807
807
|
data: {
|
|
808
|
-
|
|
808
|
+
//...this.options,
|
|
809
809
|
brand_id: this.brand_id,
|
|
810
810
|
xnamespace: this.xnamespace
|
|
811
811
|
}
|
|
@@ -910,20 +910,24 @@
|
|
|
910
910
|
page_size = this.show_shop_num;
|
|
911
911
|
}
|
|
912
912
|
}
|
|
913
|
+
let data = this.$xdUniHelper.deleteParamEmptyKey({
|
|
914
|
+
consume_mode: "SELL",
|
|
915
|
+
...this.options,
|
|
916
|
+
brand_id: this.brand_id,
|
|
917
|
+
city_code: this.stateCity.city_code,
|
|
918
|
+
latitude: this.stateLocation.latitude,
|
|
919
|
+
longitude: this.stateLocation.longitude,
|
|
920
|
+
page_size: page_size,
|
|
921
|
+
page_token: this.shop_page_token,
|
|
922
|
+
region_limit_tpl_id: this.region_limit_tpl_id,
|
|
923
|
+
namespace: this.xnamespace,
|
|
924
|
+
});
|
|
925
|
+
|
|
926
|
+
if(data['brand_type']) delete data['brand_type'];
|
|
927
|
+
|
|
913
928
|
jfbRootExec("getMallBrandHomeShopList", {
|
|
914
929
|
vm: this,
|
|
915
|
-
data:
|
|
916
|
-
consume_mode: "SELL",
|
|
917
|
-
...this.options,
|
|
918
|
-
brand_id: this.brand_id,
|
|
919
|
-
city_code: this.stateCity.city_code,
|
|
920
|
-
latitude: this.stateLocation.latitude,
|
|
921
|
-
longitude: this.stateLocation.longitude,
|
|
922
|
-
page_size: page_size,
|
|
923
|
-
page_token: this.shop_page_token,
|
|
924
|
-
region_limit_tpl_id: this.region_limit_tpl_id,
|
|
925
|
-
namespace: this.xnamespace,
|
|
926
|
-
})
|
|
930
|
+
data: data
|
|
927
931
|
}).then(res => {
|
|
928
932
|
this.loaded = true;
|
|
929
933
|
let list = res.list.map(item=>{
|
|
@@ -1284,7 +1288,7 @@
|
|
|
1284
1288
|
background:#fff;
|
|
1285
1289
|
padding: 32rpx 40rpx 40rpx 40rpx;
|
|
1286
1290
|
border-radius: 8rpx;
|
|
1287
|
-
margin-bottom: 20rpx;
|
|
1291
|
+
margin-bottom: 20rpx;
|
|
1288
1292
|
}
|
|
1289
1293
|
&_brand_info {
|
|
1290
1294
|
position: relative;
|
|
@@ -1374,7 +1378,7 @@
|
|
|
1374
1378
|
}
|
|
1375
1379
|
}
|
|
1376
1380
|
}
|
|
1377
|
-
|
|
1381
|
+
|
|
1378
1382
|
}
|
|
1379
1383
|
}
|
|
1380
1384
|
</style>
|
|
@@ -412,24 +412,6 @@
|
|
|
412
412
|
...this.getTabHeight,
|
|
413
413
|
};
|
|
414
414
|
},
|
|
415
|
-
tabItemStyleComp(){
|
|
416
|
-
let style = {
|
|
417
|
-
color: this.titleStyle.color,
|
|
418
|
-
fontWeight: this.titleStyle.fontWeight,
|
|
419
|
-
};
|
|
420
|
-
if(this.layout === 'v2') {
|
|
421
|
-
style['fontSize'] = '24rpx';
|
|
422
|
-
style = {...style,...this.getTabItemHeight}
|
|
423
|
-
if(['v2'].includes(this.vStyle)) {
|
|
424
|
-
style['backgroundColor'] = this.titleStyle.bgColor;
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
if(this.layout === 'v1') {
|
|
428
|
-
style['fontSize'] = parseInt(this.titleStyle.actFontSize) + 'rpx';
|
|
429
|
-
style = {...style,...this.getTabItemHeight}
|
|
430
|
-
}
|
|
431
|
-
return style
|
|
432
|
-
},
|
|
433
415
|
getTabItemHeight(){
|
|
434
416
|
if(this.layout === 'v1'){
|
|
435
417
|
return {
|
|
@@ -451,14 +433,30 @@
|
|
|
451
433
|
}
|
|
452
434
|
|
|
453
435
|
},
|
|
454
|
-
|
|
436
|
+
tabItemStyleComp(){
|
|
437
|
+
let style = {
|
|
438
|
+
color: this.titleStyle.color,
|
|
439
|
+
fontWeight: this.titleStyle.fontWeight,
|
|
440
|
+
};
|
|
441
|
+
if(this.layout === 'v2') {
|
|
442
|
+
style['fontSize'] = '24rpx';
|
|
443
|
+
style = {...style,...this.getTabItemHeight}
|
|
444
|
+
if(['v2'].includes(this.vStyle)) {
|
|
445
|
+
style['backgroundColor'] = this.titleStyle.bgColor;
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
if(this.layout === 'v1') {
|
|
449
|
+
style['fontSize'] = parseInt(this.titleStyle.actFontSize) + 'rpx';
|
|
450
|
+
style = {...style,...this.getTabItemHeight}
|
|
451
|
+
}
|
|
452
|
+
return style
|
|
453
|
+
},
|
|
455
454
|
tabActItemStyleComp(){
|
|
456
455
|
let style = {
|
|
457
456
|
color: this.titleStyle.actColor,
|
|
458
457
|
fontWeight: this.titleStyle.actFontWeight,
|
|
459
458
|
};
|
|
460
459
|
if(this.layout === 'v2') {
|
|
461
|
-
style['fontSize'] = '24rpx';
|
|
462
460
|
style = {...style,...this.getTabItemHeight}
|
|
463
461
|
if(['v2'].includes(this.vStyle)) {
|
|
464
462
|
if(this.titleStyle.actBgColor) style['backgroundColor'] = this.titleStyle.actBgColor;
|
|
@@ -476,6 +474,7 @@
|
|
|
476
474
|
}
|
|
477
475
|
return style
|
|
478
476
|
},
|
|
477
|
+
|
|
479
478
|
tabItemNameStyle(){
|
|
480
479
|
if(this.layout === 'v2') return {
|
|
481
480
|
fontSize: parseInt(this.titleStyle.fontSize) + 'rpx',
|
|
@@ -776,8 +775,10 @@
|
|
|
776
775
|
|
|
777
776
|
switchTab(i){
|
|
778
777
|
this.tabIndex = i;
|
|
778
|
+
this.brandList = null
|
|
779
779
|
this.getList();
|
|
780
780
|
},
|
|
781
|
+
|
|
781
782
|
getList(){
|
|
782
783
|
this.$xdShowLoading({});
|
|
783
784
|
let params = {
|
|
@@ -788,9 +789,9 @@
|
|
|
788
789
|
if(this.isCityFilter === "Y") params['city_code'] = this.stateCity.city_code;
|
|
789
790
|
else params['city_code'] = '';
|
|
790
791
|
if(this.category_ids && this.category_ids.length > 0) params['category_ids'] = this.category_ids.join(",");
|
|
792
|
+
|
|
791
793
|
jfbRootExec("getNewBrandWallList", {vm: this,data: params}).then(res => {
|
|
792
794
|
this.$xdHideLoading();
|
|
793
|
-
|
|
794
795
|
let brandList = res.items.map(item => {
|
|
795
796
|
item['brand_icon'] = item.brand_icon ? getServiceUrl(item.brand_icon, "size2") : "";
|
|
796
797
|
item['status'] = true;
|
|
@@ -799,7 +800,10 @@
|
|
|
799
800
|
|
|
800
801
|
//补缺
|
|
801
802
|
if(brandList.length >0) {
|
|
802
|
-
let differences =
|
|
803
|
+
let differences = 0;
|
|
804
|
+
if( brandList.length % this.contentCell > 0) {
|
|
805
|
+
differences = this.contentCell - brandList.length % this.contentCell
|
|
806
|
+
}
|
|
803
807
|
for(let i =0; i < differences; i++) {
|
|
804
808
|
brandList.push({isEmpty: true});
|
|
805
809
|
}
|
|
@@ -818,6 +822,7 @@
|
|
|
818
822
|
})
|
|
819
823
|
})
|
|
820
824
|
},
|
|
825
|
+
|
|
821
826
|
toBrand(brand){
|
|
822
827
|
if(this.isPreview) return;
|
|
823
828
|
let { params , brand_id} = brand;
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
</view>
|
|
141
141
|
<!--商品列表-->
|
|
142
142
|
<xd-no-data :scale-size="2" type="product" v-if="prodList && prodList.length === 0"></xd-no-data>
|
|
143
|
-
<xd-more v-if="(isPreview || !hasNext) && prodList.length > 0" :color="footerColor" :background="footerColor"><text>我是有底线的</text></xd-more>
|
|
143
|
+
<xd-more v-if="(isPreview || !hasNext) && (prodList && prodList.length > 0)" :color="footerColor" :background="footerColor"><text>我是有底线的</text></xd-more>
|
|
144
144
|
<xd-to-top :isPreview="isPreview" :mainColor="mainColor" ref="VT" :scrollTop="top"></xd-to-top>
|
|
145
145
|
</view>
|
|
146
146
|
</view>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
height="750rpx"
|
|
29
29
|
:indicatorDots="false"
|
|
30
30
|
@animationfinish="animationfinish"
|
|
31
|
-
>
|
|
31
|
+
>
|
|
32
32
|
<!--#ifdef H5-->
|
|
33
33
|
<template slot-scope="{ item,index }">
|
|
34
34
|
<image v-show="item.status===true" @error="item.status=false" @click="handlePreview(index,item)" :src="item.src"></image>
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
<xd-font-icon class="_ext" size="36" icon="iconsangedian-x" color="#999999"></xd-font-icon>
|
|
149
149
|
</view>
|
|
150
150
|
<view v-if="base_info.notice_text" class="content-item">
|
|
151
|
-
<xd-content-xss class="address_notice_content" :html="base_info.notice_text"></xd-content-xss>
|
|
151
|
+
<xd-content-xss class="address_notice_content" :html="base_info.notice_text"></xd-content-xss>
|
|
152
152
|
<xd-font-icon @click.stop="handleNotice" class="_ext" size="36" icon="iconwenhao" color="#999999"></xd-font-icon>
|
|
153
153
|
</view>
|
|
154
154
|
</view>
|
|
@@ -320,10 +320,10 @@
|
|
|
320
320
|
:layoutInfo="layoutInfo"
|
|
321
321
|
:fixedStyle="fixedStyle"
|
|
322
322
|
:mainColor="mainColor"
|
|
323
|
-
:salePriceColor="salePriceColor"
|
|
324
|
-
:salePriceFontSize="salePriceFontSize"
|
|
325
|
-
:originalPriceFontSize="originalPriceFontSize"
|
|
326
|
-
:originalPriceColor="originalPriceColor"
|
|
323
|
+
:salePriceColor="salePriceColor"
|
|
324
|
+
:salePriceFontSize="salePriceFontSize"
|
|
325
|
+
:originalPriceFontSize="originalPriceFontSize"
|
|
326
|
+
:originalPriceColor="originalPriceColor"
|
|
327
327
|
:isPlus="is_plus_site"
|
|
328
328
|
@change="handleSkuChange"
|
|
329
329
|
@onConfirm="handleConfirmSku"
|
|
@@ -583,7 +583,7 @@
|
|
|
583
583
|
if(!this.buyButton.page_buttons) return null;
|
|
584
584
|
return this.buyButton.page_buttons.find(item => item.code === 'view-delivery-scope');
|
|
585
585
|
},
|
|
586
|
-
alert_bottom() {
|
|
586
|
+
alert_bottom() {
|
|
587
587
|
let style = this.fixedStyle({ paddingBottom: (this.btnHeight), zIndex: 110 })
|
|
588
588
|
return style
|
|
589
589
|
},
|
|
@@ -604,7 +604,7 @@
|
|
|
604
604
|
},
|
|
605
605
|
sectionBoxStyle() {
|
|
606
606
|
console.log(this.sectionPadding,'this.getMarginAndPadding(this.sectionPadding,0)');
|
|
607
|
-
|
|
607
|
+
|
|
608
608
|
return {
|
|
609
609
|
margin: this.getMarginAndPadding(this.sectionPadding,0),
|
|
610
610
|
borderRadius: this.sectionRadius + 'rpx',
|
|
@@ -631,7 +631,7 @@
|
|
|
631
631
|
padding: this.getMarginAndPadding(this.btnPadding, 0)
|
|
632
632
|
};
|
|
633
633
|
console.log(this.btnPadding,'this.btnPaddingst');
|
|
634
|
-
|
|
634
|
+
|
|
635
635
|
if(this.bottomBtnOrder === 'reverse'){
|
|
636
636
|
style['flexDirection'] = 'row-reverse';
|
|
637
637
|
}
|
|
@@ -678,7 +678,7 @@
|
|
|
678
678
|
}
|
|
679
679
|
},
|
|
680
680
|
created() {
|
|
681
|
-
console.log(this.getTokenForKey('user_level'), 'user_leveluser_level');
|
|
681
|
+
console.log(this.getTokenForKey('user_level'), 'user_leveluser_level');
|
|
682
682
|
this.init(this.container);
|
|
683
683
|
this.is_plus_site = this.projectAttr.headers['X-Site-Group']==="vip";
|
|
684
684
|
this.is_vip = this.getTokenForKey('user_level')&&this.getTokenForKey('user_level')==='VIP'?true:false
|
|
@@ -831,9 +831,13 @@
|
|
|
831
831
|
...data,
|
|
832
832
|
}
|
|
833
833
|
}).then(res => {
|
|
834
|
+
|
|
835
|
+
//res = {"base_info":{"product_id":66359621,"partner_id":161,"product_type":"good","category_id":142028,"product_name":"LUOLAI\/罗莱家纺月冉晓杏全棉可水洗夏被","sub_title":"","thumb":"\/uploads\/20250609\/b24185b5c38d3018cadf48c91d159e62.jpg","product_tags":[],"market_tags":[],"tags":[],"prices":{"sale_price":29000,"activity_price":0,"market_price":59900,"wholesale_prices":[],"vip_price":0,"show_prices":[{"p":29000,"n":"","t":"S"},{"p":59900,"n":"","t":"U"}]},"sale_num":4,"region_limit_tpl_id":"MxAZmuFFEX_wzGPmnoUYF","channel_code":"anVmdWJhb3w2NjM1OTYyMQ%3D%3D","notice_text":""},"images":[{"src":"\/uploads\/20250611\/90b6ec501ea7591fc006871c1fb78869.jpg"},{"src":"\/uploads\/20250609\/dec58372f4e7f1ef1ee8792820104e1f.jpg"},{"src":"\/uploads\/20250609\/27300fe6c336db75b18593823b5471cc.jpg"},{"src":"\/uploads\/20250609\/0ce25a57e372377223ec76d45409bfe4.jpg"},{"src":"\/uploads\/20250609\/9c3a9c7bd8d9361c23aee0d64c47409e.jpg"}],"videos":[],"parameters":[{"label":"品牌","value":"LUOLAI\/罗莱家纺","key":"brand"}],"delivery_methods":[{"label":"快递配送","value":"logistics"}],"brand_info":{"brand_id":40064,"brand_name":"LUOLAI\/罗莱家纺","brand_icon":"https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/admin-upload\/202105081449057244.jpg?x-oss-process=style\/common","brand_type":"MA","supplier_id":1358505},"skus":[{"product_sku":70199044,"standards":[{"attr_id":"","name":"月冉晓杏全棉可水洗夏被","value":"150*200cm\/950g","image":"\/\/img1-b.jufubao.cn\/uploads\/20250611\/a9c8fd6dc54918eb6687c65fea034e55.jpg?ver=1749625095120","desc":""}],"prices":{"sale_price":29000,"activity_price":0,"market_price":59900,"wholesale_prices":[],"vip_price":0,"show_prices":[{"p":29000,"n":"","t":"S"},{"p":59900,"n":"","t":"U"}]},"enabled":true},{"product_sku":70199045,"standards":[{"attr_id":"","name":"月冉晓杏全棉可水洗夏被","value":"200*230cm\/1450g","image":"\/\/img1-b.jufubao.cn\/uploads\/20250611\/0eca2b62949531ce2e22137ab7580a2c.jpg?ver=1749625100584","desc":""}],"prices":{"sale_price":36600,"activity_price":0,"market_price":69900,"wholesale_prices":[],"vip_price":0,"show_prices":[{"p":36600,"n":"","t":"S"},{"p":69900,"n":"","t":"U"}]},"enabled":true}],"sms_activity":{"status":"","activity_type":"","activity_tips":"","activity_price":0,"end_time":0,"start_time":0,"distance_start_time":0,"distance_end_time":0,"max_buy_num":0,"is_today":""},"similar_products":[],"request_id":"c4fa548ce8fa2185"}
|
|
836
|
+
|
|
837
|
+
|
|
834
838
|
this.$xdHideLoading({});
|
|
835
839
|
this.loadingInfo = false;
|
|
836
|
-
const { base_info, brand_info, delivery_methods, images, parameters, skus, similar_products, videos, sms_activity } = res;
|
|
840
|
+
const { base_info, brand_info, delivery_methods, images, parameters, skus, similar_products, videos, sms_activity } = res;
|
|
837
841
|
if(base_info.prices.market_price) {
|
|
838
842
|
base_info.prices.market_price = this.$xdUniHelper.divisionFloatNumber(base_info.prices.market_price,100)
|
|
839
843
|
}
|
|
@@ -996,23 +1000,23 @@
|
|
|
996
1000
|
|
|
997
1001
|
// 根据布局类型设置价格
|
|
998
1002
|
if (this.goodsLayout === 'flash') {
|
|
999
|
-
const prices = this.smsStatus === 'ing'
|
|
1000
|
-
? PRICE_CONFIG.FLASH.ING
|
|
1003
|
+
const prices = this.smsStatus === 'ing'
|
|
1004
|
+
? PRICE_CONFIG.FLASH.ING
|
|
1001
1005
|
: PRICE_CONFIG.FLASH.WARM;
|
|
1002
|
-
|
|
1006
|
+
|
|
1003
1007
|
this.$set(this.base_info.prices, 'show_prices', prices);
|
|
1004
|
-
|
|
1008
|
+
|
|
1005
1009
|
// 处理时间格式
|
|
1006
|
-
this.hours = this.smsStatus === 'ing'
|
|
1007
|
-
? this.hours.split(':')[0]
|
|
1008
|
-
: this.hours.includes(':00')
|
|
1009
|
-
? this.hours
|
|
1010
|
+
this.hours = this.smsStatus === 'ing'
|
|
1011
|
+
? this.hours.split(':')[0]
|
|
1012
|
+
: this.hours.includes(':00')
|
|
1013
|
+
? this.hours
|
|
1010
1014
|
: `${this.hours}:00`;
|
|
1011
1015
|
} else {
|
|
1012
|
-
const prices = this.showDiscount === 'Y'
|
|
1013
|
-
? PRICE_CONFIG.NORMAL.WITH_DISCOUNT
|
|
1016
|
+
const prices = this.showDiscount === 'Y'
|
|
1017
|
+
? PRICE_CONFIG.NORMAL.WITH_DISCOUNT
|
|
1014
1018
|
: PRICE_CONFIG.NORMAL.WITHOUT_DISCOUNT;
|
|
1015
|
-
|
|
1019
|
+
|
|
1016
1020
|
this.$set(this.base_info.prices, 'show_prices', prices);
|
|
1017
1021
|
}
|
|
1018
1022
|
},
|
|
@@ -1144,7 +1148,7 @@
|
|
|
1144
1148
|
this.getElementHeight()
|
|
1145
1149
|
});
|
|
1146
1150
|
},50)
|
|
1147
|
-
|
|
1151
|
+
|
|
1148
1152
|
}).catch(err => {
|
|
1149
1153
|
this.$xdHideLoading();
|
|
1150
1154
|
this.$xdLog.catch(err);
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
module.exports = [
|
|
14
14
|
{
|
|
15
|
-
mapFnName: '
|
|
15
|
+
mapFnName: 'getNewMallProductList',
|
|
16
16
|
title: '获取商品列表',
|
|
17
17
|
path: '/product/v1/:xnamespace/product/search',
|
|
18
18
|
isRule: false,
|
|
@@ -59,8 +59,8 @@ module.exports = [
|
|
|
59
59
|
disabled: true,
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
mapFnName: "
|
|
63
|
-
mapFn: "
|
|
62
|
+
mapFnName: "getNewSearchFilterList",
|
|
63
|
+
mapFn: "getNewSearchFilterList",
|
|
64
64
|
title: "获取商品搜索过滤列表",
|
|
65
65
|
path: "/product/v1/:xnamespace/product/search-filters",
|
|
66
66
|
isRule: false,
|
|
@@ -832,7 +832,6 @@
|
|
|
832
832
|
fontWeight: 'normal',
|
|
833
833
|
actFontWeight: 'normal',
|
|
834
834
|
},{sKey:'level2NameStatus', fields:['level2Name','level2Color'],isMerge: true});
|
|
835
|
-
debugger
|
|
836
835
|
|
|
837
836
|
const subTitleRadius = gCPVal(container, 'subTitleRadius', ['40rpx'],{sKey:'subTitleRadiusStatus', fields:['subTitleRadius']})||0;
|
|
838
837
|
const subTitleIconShadow = gCPVal(container, 'subTitleIconShadow', [this.gStyleValue.shadow,'none'], {isShadow:true});
|
|
@@ -964,7 +963,7 @@
|
|
|
964
963
|
this.isFirst = false;
|
|
965
964
|
clearTimeout(this.timer);
|
|
966
965
|
this.timer = setTimeout(() => {
|
|
967
|
-
jfbRootExec("
|
|
966
|
+
jfbRootExec("getNewMallProductList", {
|
|
968
967
|
vm: this,
|
|
969
968
|
data: this.$xdUniHelper.deleteParamEmptyKey(data)
|
|
970
969
|
})
|
|
@@ -1109,7 +1108,7 @@
|
|
|
1109
1108
|
//过滤条件
|
|
1110
1109
|
getSearchFilterList(){
|
|
1111
1110
|
let data = this.getFilterListParams();
|
|
1112
|
-
jfbRootExec("
|
|
1111
|
+
jfbRootExec("getNewSearchFilterList", {
|
|
1113
1112
|
vm: this,
|
|
1114
1113
|
data: data
|
|
1115
1114
|
}).then(res => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
module.exports = {
|
|
4
|
-
|
|
4
|
+
getNewSearchFilterList: {
|
|
5
5
|
items: [
|
|
6
6
|
{
|
|
7
7
|
title: '配送方式',
|
|
@@ -93,7 +93,7 @@ module.exports = {
|
|
|
93
93
|
],
|
|
94
94
|
request_id: "f1733f02aa8c9672"
|
|
95
95
|
},
|
|
96
|
-
|
|
96
|
+
getNewMallProductList: {
|
|
97
97
|
total_size: 8,
|
|
98
98
|
next_page_token: "1",
|
|
99
99
|
list: [
|
|
@@ -443,125 +443,6 @@ module.exports = {
|
|
|
443
443
|
],
|
|
444
444
|
request_id: "9512a165463ba45b"
|
|
445
445
|
},
|
|
446
|
-
getMallCategoryTree: {
|
|
447
|
-
|
|
448
|
-
{
|
|
449
|
-
category_name: "佳节礼品",
|
|
450
|
-
category_id: 10001,
|
|
451
|
-
category_icon: "http://static.e56buy.com/XdnPLVzrdDzhdZJGZvy5Mt2QLhgtYZwV",
|
|
452
|
-
children: []
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
category_name: "粮油副食",
|
|
456
|
-
category_id: 10002,
|
|
457
|
-
category_icon:
|
|
458
|
-
"http://sandbox-img.jufubao.cn/uploads/20230406/2bcd668a78c0171f83ca68a9dfc2f8f5.jpeg",
|
|
459
|
-
children: []
|
|
460
|
-
},
|
|
461
|
-
{
|
|
462
|
-
category_name: "休闲食品",
|
|
463
|
-
category_id: 10003,
|
|
464
|
-
category_icon:
|
|
465
|
-
"http://sandbox-img.jufubao.cn/uploads/20230403/dadf68c84461a3a3f1caa30fe4debc2f.jpg",
|
|
466
|
-
children: []
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
category_name: "乳品饮料",
|
|
470
|
-
category_id: 10004,
|
|
471
|
-
category_icon:
|
|
472
|
-
"http://sandbox-img.jufubao.cn/uploads/20230324/008363a661eec227e2e1dd91ea6095e0.png",
|
|
473
|
-
children: []
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
category_name: "家纺用品",
|
|
477
|
-
category_id: 10005,
|
|
478
|
-
category_icon:
|
|
479
|
-
"http://sandbox-img.jufubao.cn/uploads/20230525/b432700f35328c44fc8b8c9f36a113f0.png",
|
|
480
|
-
children: []
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
category_name: "家用电器",
|
|
484
|
-
category_id: 10006,
|
|
485
|
-
category_icon:
|
|
486
|
-
"http://sandbox-img.jufubao.cn/uploads/20230525/a849865fcb85f7756285a2a96a90811b.jpg",
|
|
487
|
-
children: []
|
|
488
|
-
},
|
|
489
|
-
{
|
|
490
|
-
category_name: "日货用品",
|
|
491
|
-
category_id: 10007,
|
|
492
|
-
category_icon:
|
|
493
|
-
"http://sandbox-img.jufubao.cn/uploads/20230525/f56df5f334b392daaa539e74df269dbe.jpg",
|
|
494
|
-
children: []
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
category_name: "生鲜冷链",
|
|
498
|
-
category_id: 10009,
|
|
499
|
-
category_icon:
|
|
500
|
-
"http://static.e56buy.com/XdHO6sAVMAb8WzwPvtwoo1iuCxh8uWXp",
|
|
501
|
-
children: []
|
|
502
|
-
}
|
|
503
|
-
],
|
|
504
|
-
request_id: "bf0aed811fd63214"
|
|
505
|
-
},
|
|
506
|
-
getMallCategoryChildren: {
|
|
507
|
-
items: [
|
|
508
|
-
{
|
|
509
|
-
category_name: "佳节礼品",
|
|
510
|
-
category_id: 10001,
|
|
511
|
-
category_icon:
|
|
512
|
-
"http://static.e56buy.com/XdnPLVzrdDzhdZJGZvy5Mt2QLhgtYZwV",
|
|
513
|
-
children: []
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
category_name: "粮油副食",
|
|
517
|
-
category_id: 10002,
|
|
518
|
-
category_icon:
|
|
519
|
-
"http://sandbox-img.jufubao.cn/uploads/20230406/2bcd668a78c0171f83ca68a9dfc2f8f5.jpeg",
|
|
520
|
-
children: []
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
category_name: "休闲食品",
|
|
524
|
-
category_id: 10003,
|
|
525
|
-
category_icon:
|
|
526
|
-
"http://sandbox-img.jufubao.cn/uploads/20230403/dadf68c84461a3a3f1caa30fe4debc2f.jpg",
|
|
527
|
-
children: []
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
category_name: "乳品饮料",
|
|
531
|
-
category_id: 10004,
|
|
532
|
-
category_icon:
|
|
533
|
-
"http://sandbox-img.jufubao.cn/uploads/20230324/008363a661eec227e2e1dd91ea6095e0.png",
|
|
534
|
-
children: []
|
|
535
|
-
},
|
|
536
|
-
{
|
|
537
|
-
category_name: "家纺用品",
|
|
538
|
-
category_id: 10005,
|
|
539
|
-
category_icon:
|
|
540
|
-
"http://sandbox-img.jufubao.cn/uploads/20230525/b432700f35328c44fc8b8c9f36a113f0.png",
|
|
541
|
-
children: []
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
category_name: "家用电器",
|
|
545
|
-
category_id: 10006,
|
|
546
|
-
category_icon:
|
|
547
|
-
"http://sandbox-img.jufubao.cn/uploads/20230525/a849865fcb85f7756285a2a96a90811b.jpg",
|
|
548
|
-
children: []
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
category_name: "日货用品",
|
|
552
|
-
category_id: 10007,
|
|
553
|
-
category_icon:
|
|
554
|
-
"http://sandbox-img.jufubao.cn/uploads/20230525/f56df5f334b392daaa539e74df269dbe.jpg",
|
|
555
|
-
children: []
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
category_name: "生鲜冷链",
|
|
559
|
-
category_id: 10008,
|
|
560
|
-
category_icon:
|
|
561
|
-
"http://static.e56buy.com/XdHO6sAVMAb8WzwPvtwoo1iuCxh8uWXp",
|
|
562
|
-
children: []
|
|
563
|
-
}
|
|
564
|
-
],
|
|
565
|
-
request_id: "bf0aed811fd63214"
|
|
566
|
-
}
|
|
446
|
+
getNewMallCategoryTree: { "items": [{ "category_name": "母婴用品", "category_id": 4360, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/43cc2cb3c71edb6415ec8cb662693471.webp.jpg", "parent_id": 0, "tag": "rec", "children": [{ "category_name": "儿童车安全椅", "category_id": 4337, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/7a93387dedfc29f61745da6fc51517f4.jpg", "parent_id": 4360, "tag": "rec", "children": [] }, { "category_name": "纸尿裤拉拉裤", "category_id": 4338, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/e3dc107d6c5fe5cce55a36f3631386da.png", "parent_id": 4360, "tag": "", "children": [] }, { "category_name": "营养辅食奶粉", "category_id": 4339, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/6a2edc1bf28f44671bdac27b73a0e0a5.jpg", "parent_id": 4360, "tag": "", "children": [] }, { "category_name": "孕产妇用品", "category_id": 4340, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/20c4d05eff9cb34757b42de770536c26.webp.jpg", "parent_id": 4360, "tag": "", "children": [] }, { "category_name": "婴童用品", "category_id": 4342, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/b8ec88d8b68a2cb50537a792820c6960.webp.jpg", "parent_id": 4360, "tag": "", "children": [] }] }, { "category_name": "美妆个护", "category_id": 4022, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/20200821145033592.jpg", "parent_id": 0, "tag": "rec", "children": [{ "category_name": "护肤品", "category_id": 155898, "category_icon": "\/uploads\/20230921\/e17f95c8c379e4f176b6e3dd6c661866.jpg", "parent_id": 4022, "tag": "rec", "children": [] }, { "category_name": "彩妆", "category_id": 155897, "category_icon": "\/uploads\/20230921\/fb872997476904699a9b050a4a79a81d.png", "parent_id": 4022, "tag": "rec", "children": [] }] }, { "category_name": "箱包办公", "category_id": 4080, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/eef4a0415e9917266666e8e7e944e412.webp_副本_副本_副本_副本_副本.jpg", "parent_id": 0, "tag": "rec", "children": [{ "category_name": "报刊杂志", "category_id": 4343, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221101\/f6998e78d55d1e50c09a60ad789a1981.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "运动户外", "category_id": 4336, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/05f5af137f1fc9bdb05bf82154aa5793.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "其他办公用品", "category_id": 4349, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/8973022ba16f2ef86955df001f594934.webp.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "办公电器", "category_id": 6004, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/33f5c249768f0661f14a60bc71d6566b.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "装订工具", "category_id": 4348, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/f1ad7fdd294b4ac1212f44ac43cceaaa.webp.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "计算测量", "category_id": 4345, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/b0e2511d42465b266382adc1fca50528.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "绘画工具", "category_id": 4341, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/83bfefc46e2380d3ad50104a4ef15b5b.webp.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "纸本", "category_id": 4347, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/883dbd03c62447b9d2bddd0ecd5d7b77.webp.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "笔墨", "category_id": 4344, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/1cf4d1298b0b0482c581982bea5fcb5e.webp.jpg", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "拉杆箱旅行包", "category_id": 4316, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/75f13622310ac76fdab4a0db3b24df9d.png", "parent_id": 4080, "tag": "", "children": [] }, { "category_name": "双肩包背包", "category_id": 4313, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/143fbea3cfd6cf2ef063c888d7bf3d03.jpg", "parent_id": 4080, "tag": "", "children": [] }] }, { "category_name": "日杂用品", "category_id": 4060, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/743b4e07ab9767cc8b03bad16a053bd8.webp_副本_副本_副本_副本.jpg", "parent_id": 0, "tag": "rec", "children": [{ "category_name": "用品组合", "category_id": 4083, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/70c53b5c1909806b043f951eab851342.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "医疗防护", "category_id": 5153, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/ee3aa020193e5f4c3cacd9c091cb5df8.webp.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "雨具其他", "category_id": 4249, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/209e59df0055f6d2a51627efe7fbd291.webp.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "收纳工具", "category_id": 4234, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/e372515fa8db0ed6dca77c16ea454d28.webp.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "清洁工具", "category_id": 4061, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/96c345981c920647a4130b429b476241.webp.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "消毒湿巾", "category_id": 6998, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/8407907dd1eacd8653d7ceafa8e051f1.png", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "卫生棉", "category_id": 4228, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/f7ea36002fdfbf070ff7b08ad5aba9bf.png", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "厨房纸", "category_id": 6993, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/db6ee35b66e7009067a98c2a8d4f79e3.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "手帕纸", "category_id": 4227, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/dad816d1ed429bf42256298692ad53eb.webp.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "卫生卷纸", "category_id": 4220, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/f28538835e8113eb8010be9a3c092778.jpg", "parent_id": 4060, "tag": "", "children": [] }, { "category_name": "抽纸面巾", "category_id": 4221, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/19e7b01bc03111790a9ef9abece6ee77.jpg", "parent_id": 4060, "tag": "", "children": [] }] }, { "category_name": "日化家清", "category_id": 4021, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/e8bd10d228f0ed7c64ce9a92a3b49720.jpg", "parent_id": 0, "tag": "rec", "children": [{ "category_name": "清洁套装", "category_id": 4059, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/dd331c733dad2d15a7e117f581ab48af.png", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "洗护套装", "category_id": 4264, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/c25f67758e92d0b2936de717c3661a4a.png", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "厨卫清洁剂", "category_id": 5200, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220117\/8885ce3328f6a3232af3dde207a89736.jpg", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "净化除味", "category_id": 4027, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220117\/bb3c9120aee610e66569d2d02c1dd857.webp.jpg", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "杀虫剂", "category_id": 5201, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/f3f690fce453b31fa9c5955e3ed8e57a.webp.jpg", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "消毒剂", "category_id": 4232, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/cb4548215a84b1da7b280e427af469ba.webp.jpg", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "护理剂", "category_id": 4231, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/ea0f79f3a88ff912c8803d35b967ded9.png", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "洗衣剂", "category_id": 4230, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/eb0e55a1bbcbd71f44cb8a8c4149d9bb.png", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "私处洗护", "category_id": 4265, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220117\/56d02a10f50ce161b2bb6eccd8a8b7c4.webp.jpg", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "香皂洗手液", "category_id": 4262, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/531b6f3aeab908117f806e7953a04849.png", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "口腔清洁", "category_id": 4269, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/cc360b6e44c39e7376f2c6d4a73a2578.png", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "沐浴洁肤", "category_id": 4260, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/c137fe760f4f39f3dfe0ae32f197c87b.jpg_430x430q90.jpg", "parent_id": 4021, "tag": "", "children": [] }, { "category_name": "洗发护发", "category_id": 4259, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/3ae2652f4980436bf37b6bace87ef8ea.webp.jpg", "parent_id": 4021, "tag": "", "children": [] }] }, { "category_name": "厨卫用品", "category_id": 4020, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/f8af86980c821ec6d81ab058574f9313.webp_副本_副本.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "其他厨卫用品", "category_id": 4121, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/08f8f1a603996cf999cce9f52c90bf8c.png", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "储藏保鲜", "category_id": 4218, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/66cb504a128c5e0e92de2daee548dc45.webp.jpg", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "杯壶套装", "category_id": 4216, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211215\/006c18548726722a3105f042dda29e26.png", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "其他杯壶", "category_id": 4055, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211216\/4952ad32bcc6ca7cc23600591034a9a5.jpg", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "保温杯壶", "category_id": 4213, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211216\/66f4bafc874166c596753a036336dc66.png", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "餐具", "category_id": 3912, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/8a20565e28909a87bb029cc6f62558cd.png", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "厨具", "category_id": 4053, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/3f75904647f0db6f5b6b4daa12222d2c.png", "parent_id": 4020, "tag": "", "children": [] }, { "category_name": "锅具", "category_id": 4052, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/2f454828f0561c5dbe53a97d2e859418.jpg", "parent_id": 4020, "tag": "", "children": [] }] }, { "category_name": "厨房电器", "category_id": 4046, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/7a0fb6a3546646a9124b1e4b2d88bd26.webp_副本.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "其他厨房电器", "category_id": 4240, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/7a1a6e0d22a3076b5c91c15f498a9d97.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "清洗机消毒器", "category_id": 4171, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/53ee29378a1a80982bda92955ec39eb8.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "零食礼盒", "category_id": 3922, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/7d716551eb50e7fbcd0d5fad7b1e85fd.png", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "咖啡机饮水机", "category_id": 4169, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/102784f54cc0af7b35e43bbf5312971a.png", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "养生壶电水壶", "category_id": 4170, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/2c9ff4a8466689ba851f50e9b9129c9c.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "保温加热器", "category_id": 4172, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/9739581228d08fa70a94401178757f6c.png", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "多功能电锅", "category_id": 3920, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/f5b023ef1807f7a6c3664315b2bd290b.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "电压力锅", "category_id": 4026, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/bcd3960684fc9759ddb11895f8f85bcc.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "空气炸锅", "category_id": 4167, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/5db5f82725103265ac0e840d9d4ec4cb.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "料理机", "category_id": 4168, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/fbff33741d2ab247a4c318b09df1e936.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "电饼铛", "category_id": 3921, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/8f60247c2910eab24c84b84f447131fa.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "电磁炉", "category_id": 6990, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/8d40b3e84041bf3efec8eb123e12c74e.jpg", "parent_id": 4046, "tag": "", "children": [] }, { "category_name": "电饭煲", "category_id": 4054, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/b9c6f8e76531d0a50df383858e9853b8.jpg", "parent_id": 4046, "tag": "", "children": [] }] }, { "category_name": "家用电器", "category_id": 4018, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/93b5138624b243243cc130316f0279cd.webp.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "其他生活家电", "category_id": 4163, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/50065cb140b54e2c6e59b95d8c68ea8f.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "加湿器除湿机", "category_id": 4160, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/000daf61dbe0543adf395418a0125e9e.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "熨烫机烘干器", "category_id": 4165, "category_icon": "https:\/\/img.li91.com\/m\/0\/1541001600\/5c00e6f6eb1cf.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "除螨仪清洗机", "category_id": 4164, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230317\/6cf9213817c40b45ade633de3afd1dbf.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "保健按摩仪", "category_id": 4177, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/b0c1f6ceab54003c4ffdb8049e063299.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "净化除味器", "category_id": 4383, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/9eedbebb7ff4cf16f3e65a3c4344a471.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "清洁电器", "category_id": 4384, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/ddbe3ca597aed165daff55a5e7ef585a.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "手机配件", "category_id": 4181, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/f0a5b38c5295bd44e1ce119d607dd1d9.webp.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "数码产品", "category_id": 4386, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/15551ca24662cf2c57a92b6d1f2e8565.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "照明灯具", "category_id": 4385, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/cb22397c9804b7021a7d08bab1b00735.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "取暖电器", "category_id": 4366, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/c084e1d377d83b95197a0137249bf001.webp.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "制冷电器", "category_id": 4161, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/c63550501192d8ec3d2475ceae7e1e53.jpg", "parent_id": 4018, "tag": "", "children": [] }, { "category_name": "个护电器", "category_id": 4047, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/20200921170428259.jpg?x-oss-process=style\/common", "parent_id": 4018, "tag": "", "children": [] }] }, { "category_name": "家纺用品", "category_id": 4019, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/09445863340ba43cc42b276654a1e181.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "其他家纺用品", "category_id": 4195, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211219\/e496aa91bcbb058240c25048ac924aa8.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "地毯地垫", "category_id": 4192, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211216\/3bf78534e22c283d0c35cf711de984f2.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "坐垫座套", "category_id": 4193, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211216\/9a464efe3f4e5ec3b17fd7f2b712c876.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "靠垫抱枕", "category_id": 4189, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/ee0e9d6c851d93c9f0272bdbbfd74927.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "毛巾浴巾", "category_id": 4188, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/4303eb9b44152b0997d4a933deb867bb.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "家纺套装", "category_id": 4184, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230213\/e3988a383d424e9ef7f1cca2c3abcdfa.png", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "床垫凉席", "category_id": 4187, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/8427f8806de1c6730a1df7c57d765431.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "毛毯披肩", "category_id": 2971, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/9e8a958fcbf9d6ed402743b888b30c20.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "被芯被罩", "category_id": 4186, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/1547aa3939070e8062b07fbdea064779.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }, { "category_name": "枕芯枕套", "category_id": 2966, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/2efaea76b8a1db8612647f521bfe78f7.webp.jpg", "parent_id": 4019, "tag": "", "children": [] }] }, { "category_name": "乳品饮料", "category_id": 4017, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/e83c162aa7a18107ce67941857e9be6c.webp.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "冲调代餐", "category_id": 4039, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/761d7409dcee0919ae13c80cdb694605.webp.jpg", "parent_id": 4017, "tag": "", "children": [] }, { "category_name": "咖啡蜂蜜", "category_id": 4042, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221019\/a14987d4c56a849fa18fd90bf681172d.jpg", "parent_id": 4017, "tag": "", "children": [] }, { "category_name": "饮用纯水", "category_id": 4037, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/0d40a5d1e817ce9dbc66efae43f0a200.webp.jpg", "parent_id": 4017, "tag": "", "children": [] }, { "category_name": "果汁饮料", "category_id": 4103, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221019\/cf14074fd3b5c5e5195ff319e9263ebb.webp.jpg", "parent_id": 4017, "tag": "", "children": [] }, { "category_name": "中外名酒", "category_id": 4378, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221019\/eeae73efa89c082af0b007e4228c15c6.webp.jpg", "parent_id": 4017, "tag": "", "children": [] }, { "category_name": "茶叶茶饮", "category_id": 4109, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221019\/da86b407cbc499c8dd2ce4918c800be5.webp.jpg", "parent_id": 4017, "tag": "", "children": [] }, { "category_name": "纯奶酸奶", "category_id": 4041, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221019\/0af92ee30d2e6d012bcd21f394ff7c95.jpg", "parent_id": 4017, "tag": "", "children": [] }] }, { "category_name": "休闲食品", "category_id": 4033, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/654f3e35e38f9b90d993b2237908fb75.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "其他零食", "category_id": 4035, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/db06e246054e9cd5806381208657b404.webp.jpg", "parent_id": 4033, "tag": "", "children": [] }, { "category_name": "糖果巧克力", "category_id": 4365, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/d6b62862dd0458aeb8e1b05b20048035.webp.jpg", "parent_id": 4033, "tag": "", "children": [] }, { "category_name": "果干蜜饯", "category_id": 4377, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/179791423d8c97b6b425bf6f57a23ec3.webp.jpg", "parent_id": 4033, "tag": "", "children": [] }, { "category_name": "坚果炒货", "category_id": 4127, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/b8600026ab699cc319eff5020f1628ca.webp.jpg", "parent_id": 4033, "tag": "", "children": [] }, { "category_name": "饼干糕点", "category_id": 4150, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/1d2ef1ad89f2f7535b8b2347596803e6.webp.jpg", "parent_id": 4033, "tag": "", "children": [] }] }, { "category_name": "生鲜冷链", "category_id": 6002, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/dd50e1576cc04140fc26de55c5ea1396.webp.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "低温食品", "category_id": 4310, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/61d420df5c3a7b38888216d72bfafa1b.webp.jpg", "parent_id": 6002, "tag": "", "children": [] }, { "category_name": "品质鲜肉", "category_id": 4379, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230216\/0bd416f0ae27732cd4aff11d77353225.jpg", "parent_id": 6002, "tag": "", "children": [] }, { "category_name": "海鲜水产", "category_id": 4311, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20230216\/8f0188fac1f03fd6ba11cb62c7c36817.jpg", "parent_id": 6002, "tag": "", "children": [] }, { "category_name": "禽蛋", "category_id": 4093, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/b9605964ffa1308f9bcf7bb1a7826464.webp.jpg", "parent_id": 6002, "tag": "", "children": [] }, { "category_name": "蔬菜", "category_id": 4092, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/80545e28ecc35dc9a5fefd6e747d4d84.png", "parent_id": 6002, "tag": "", "children": [] }, { "category_name": "水果", "category_id": 4091, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/be1027bfbbe747b5d506909807d0de77.jpg", "parent_id": 6002, "tag": "", "children": [] }] }, { "category_name": "粮油副食", "category_id": 4016, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/a7446a1bd741b524bfe129feafe3dcb6.webp.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "食品组合", "category_id": 4082, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/4eb1683c457e57a1f71f4ad8b1c3aa8d.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "甘肃特产", "category_id": 6003, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220726\/8bc2913cbfa18d2231ddb08a463ea5c3.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "酱菜罐头", "category_id": 4143, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/c89577e0fee7a97cca78b86bdcc86660.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "素食", "category_id": 94, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220822\/d999bce79b186a9bb2ffeef31e030e48.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "熟食腊味", "category_id": 4141, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/9b7b7fedf621056abfed8e83f431835e.webp.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "速食", "category_id": 4034, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/d41681c01dd95165cca1e5670a333b31.webp.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "干货", "category_id": 4128, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/1ddf30f22a936829395e65a8fa84aaa1.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "调料", "category_id": 4029, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211214\/a5546d30e4da147966ed73235c00ea00.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "食用油", "category_id": 4030, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/c3c76db712a17f770b2eb68541d00839.webp.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "杂粮", "category_id": 4089, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/99e4a9e5745ae9e39859c2e76e90d4c2.webp.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "面", "category_id": 4088, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/e02517b48b38a96e64c1970133c04bd7.webp.jpg", "parent_id": 4016, "tag": "", "children": [] }, { "category_name": "米", "category_id": 4087, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20220110\/ab37a2fa135a6dcec57fe9cc9d13f549.jpg", "parent_id": 4016, "tag": "", "children": [] }] }, { "category_name": "佳节礼品", "category_id": 4015, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20211128\/65b89d80acec64f6b4735dd78a40af1d.jpg", "parent_id": 0, "tag": "", "children": [{ "category_name": "职工慰问", "category_id": 4036, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/6dd3aafb8bb338f12c48d1671708caa8.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "温情暖冬", "category_id": 5145, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/2dbe80a185f278066bbaed5c1f067ded.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "儿童节", "category_id": 4372, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/9788d80eff2b906f15d8b7d6432a3a36.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "清凉一夏", "category_id": 5144, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/5830e42594e053ae2de40632f0461a03.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "中秋国庆", "category_id": 4086, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/cf67a715be1110eba7cf6d4f0a193acc.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "端午节", "category_id": 4085, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/434c68db2e8626db704e647ab0d3cee4.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "劳动节", "category_id": 4376, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/86149089436680a977f2e789d95ec1f6.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "新春佳节", "category_id": 4084, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/34d0dbdb1b9c951e99a23fbcca534591.png", "parent_id": 4015, "tag": "", "children": [] }, { "category_name": "女神节", "category_id": 5142, "category_icon": "https:\/\/jfb-public-images.oss-cn-qingdao.aliyuncs.com\/uploads\/20221025\/2a2d695f2e642809e88905825966a708.png", "parent_id": 4015, "tag": "", "children": [] }] }], "request_id": "2cb2d3e3302836b1" },
|
|
447
|
+
|
|
567
448
|
};
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
<view :style="[subTitleIcon]" class="sub_icon">
|
|
68
68
|
<image :src="item.category_icon" />
|
|
69
69
|
</view>
|
|
70
|
-
<view :style="[(uiPid === item.category_id?level2ActNameComp:level2NameComp)]">{{item.category_name||item.name}}</view>
|
|
70
|
+
<view class="sub_name" :style="[(uiPid === item.category_id?level2ActNameComp:level2NameComp)]">{{item.category_name||item.name}}</view>
|
|
71
71
|
</view>
|
|
72
72
|
</view>
|
|
73
73
|
<!--一级分类-->
|
|
@@ -200,7 +200,8 @@ export default {
|
|
|
200
200
|
itemStyleComp(){
|
|
201
201
|
return {
|
|
202
202
|
width: this.getWidth(64,5) + 'px',
|
|
203
|
-
margin:'0 0 24rpx'
|
|
203
|
+
margin:'0 0 24rpx',
|
|
204
|
+
paddingBottom: '40rpx'
|
|
204
205
|
}
|
|
205
206
|
},
|
|
206
207
|
},
|
|
@@ -402,6 +403,19 @@ export default {
|
|
|
402
403
|
align-items: center;
|
|
403
404
|
font-size: 24rpx;
|
|
404
405
|
color: #333333;
|
|
406
|
+
position: relative;
|
|
407
|
+
|
|
408
|
+
& > .sub_name {
|
|
409
|
+
left: 0!important;
|
|
410
|
+
right: 0!important;
|
|
411
|
+
text-align: center;
|
|
412
|
+
width: 100%!important;
|
|
413
|
+
overflow: hidden;
|
|
414
|
+
word-break: break-all;
|
|
415
|
+
white-space: wrap;
|
|
416
|
+
height: 36rpx;
|
|
417
|
+
line-height: 36rpx;
|
|
418
|
+
}
|
|
405
419
|
&.active{
|
|
406
420
|
color: var(--main-color);
|
|
407
421
|
}
|