From dc69746320731d243392c70ff5f8d87efadec72d Mon Sep 17 00:00:00 2001
From: ghusermoon <2673031505@qq.com>
Date: Tue, 30 Jun 2020 18:06:50 +0800
Subject: [PATCH] api
---
common/api/shop.js | 42 +-
common/api/user.js | 12 +-
components/index/daren-item/index.vue | 11 +-
components/index/video-item/index.vue | 39 +-
components/mine/address-active/index.vue | 14 +-
.../mine/address-block/address-item.vue | 3 +-
components/shop/shop-item/index.vue | 9 +-
pageA/login/login.vue | 6 +-
pageB/sdetails/index.vue | 8 +-
pageC/cart/ConfirmOrder.vue | 282 +++--
pageC/cart/index.vue | 73 +-
pageC/classify/index.vue | 34 +-
pageE/mine/EditUserInfo.vue | 16 +-
pageE/more/Address.vue | 2 +-
pageE/order/Details.vue | 12 +-
pageE/order/Index.vue | 10 +
pages.json | 9 -
pages/index/index.vue | 37 +-
pages/mine/index.vue | 8 +
pages/shop/index.vue | 72 +-
static/js/classify.data.js | 1087 -----------------
21 files changed, 471 insertions(+), 1315 deletions(-)
delete mode 100644 static/js/classify.data.js
diff --git a/common/api/shop.js b/common/api/shop.js
index dbdf7e4..8bd518f 100644
--- a/common/api/shop.js
+++ b/common/api/shop.js
@@ -11,10 +11,37 @@ export default {
is_video_img: is_video_img,
});
},
+ // 发现(取消)点赞
+ articleLike({ article_id }) {
+ return vm.$u.post('article/articleLike', {
+ article_id: article_id,
+ });
+ },
+ // 发现(取消)收藏
+ articleCollect({ article_id }) {
+ return vm.$u.post('article/articleCollect', {
+ article_id: article_id,
+ });
+ },
+ // 屏蔽用户
+ articleAddShield({ article_id, member_id }) {
+ return vm.$u.post('article/articleAddShield', {
+ article_id: article_id,
+ member_id: member_id,
+ });
+ },
+ // 推荐达人
+ getRecommendList(){
+ return vm.$u.post('MemberExpert/recommendList');
+ },
// 获取商城首页信息(顶部轮播图与商品分类)
getShopTopList(){
return vm.$u.post('Shop/getShopTopList');
},
+ // 商品分类列表(树结构)
+ getGoodsClassifyList() {
+ return vm.$u.post('Goods/getGoodsClassifyList');
+ },
// 商品推荐
getGoodsRecommend({page}){
return vm.$u.post('Goods/getGoodsRecommend', {
@@ -42,12 +69,25 @@ export default {
cart_ids: id
});
},
+ // 购物车更新商品数量
+ cartUpdateNumber({ cart_id, quantity }) {
+ return vm.$u.post('cart/cartUpdate', {
+ cart_id: cart_id,
+ quantity: quantity
+ });
+ },
+ // 订单结算数据
+ settlementOrder({ cart_id }) {
+ return vm.$u.post('buy/buy_step1', {
+ cart_id: cart_id,
+ });
+ },
// 商品详情
getGoodsDetails({ id }) {
return vm.$u.post('Goods/goodDetails', {
goods_id: id
});
- }
+ },
}
}
diff --git a/common/api/user.js b/common/api/user.js
index 2b93d3d..a530844 100644
--- a/common/api/user.js
+++ b/common/api/user.js
@@ -183,18 +183,26 @@ export default {
return vm.$u.post('Member/MemberInfo');
},
// 设置-修改用户信息
- updateMemberInfo({ nickname, gender, avatar }) {
+ updateMemberInfo({ nickname, gender, avatar, birthday }) {
return vm.$u.post('Member/changeMemberInfo', {
nickname: nickname,
sex: gender,
avatar: avatar,
+ birthday: birthday,
});
},
// 用户浏览记录
getBrowseList() {
return vm.$u.post('Member/BrowseList');
},
-
+ // 订单列表
+ getOrderList({ page }) {
+ return vm.$u.post('Goods/orderList', { page });
+ },
+ // 订单详情
+ getOrderInfo({ order_id }) {
+ return vm.$u.post('Goods/orderInfo', { order_id });
+ },
}
}
}
\ No newline at end of file
diff --git a/components/index/daren-item/index.vue b/components/index/daren-item/index.vue
index cd1356b..9cec250 100644
--- a/components/index/daren-item/index.vue
+++ b/components/index/daren-item/index.vue
@@ -1,14 +1,17 @@
-
- 这是名字
- 直播状态
+
+ {{ info.member_nickname }}
+ 状态: {{ info.live_status == 1 ? '正在直播' : '未开播' }}
关注
\ No newline at end of file
diff --git a/pageE/mine/EditUserInfo.vue b/pageE/mine/EditUserInfo.vue
index 1b829eb..48148e6 100644
--- a/pageE/mine/EditUserInfo.vue
+++ b/pageE/mine/EditUserInfo.vue
@@ -12,7 +12,7 @@
性别
- {{ gender }}
+ {{ gender == '1' ? '男' : '女' }}
@@ -55,9 +55,10 @@ export default {
second: false
},
nickname: '胖胖',
- gender: '',
+ gender: '', // 1男 2女
birthday: '',
phoneNumber: '',
+ avatar: '',
}
},
onLoad() {
@@ -78,20 +79,21 @@ export default {
}
})
},
- updateMemberInfo({ avatar = '' }) {
+ updateMemberInfo() {
this.$u.api.updateMemberInfo({
nickname: this.nickname,
- sex: this.gender,
- avatar: avatar,
+ gender: this.gender,
+ avatar: this.avatar,
birthday: this.birthday,
}).then(res => {
if (res.errCode == 0) {
+ this.getUserInfo();
}
})
},
setGender(value) {
- console.log(value);
- this.gender = value[0].label;
+ // console.log(value);
+ this.gender = value[0].value;
},
setBirthday(value) {
// console.log(value);
diff --git a/pageE/more/Address.vue b/pageE/more/Address.vue
index 255d05d..bc4bb0a 100644
--- a/pageE/more/Address.vue
+++ b/pageE/more/Address.vue
@@ -22,7 +22,7 @@ export default {
components: {
AddressItem
},
- onLoad() {
+ onShow() {
this.getAddressList();
},
methods: {
diff --git a/pageE/order/Details.vue b/pageE/order/Details.vue
index 96f4e92..06bf86e 100644
--- a/pageE/order/Details.vue
+++ b/pageE/order/Details.vue
@@ -78,7 +78,8 @@
export default {
data() {
return {
- current: 0
+ current: 0,
+ orderInfo: {}
}
},
onLoad(option) {
@@ -87,6 +88,15 @@ export default {
this.setTitle();
},
methods: {
+ getOrderInfo(id) {
+ this.$u.api.getOrderInfo({
+ order_id: id,
+ }).then(res => {
+ if(res.errCode == 0) {
+ this.orderInfo = res.data;
+ }
+ })
+ },
setTitle(){
let title = ''
switch (this.current) {
diff --git a/pageE/order/Index.vue b/pageE/order/Index.vue
index 22610dd..512179b 100644
--- a/pageE/order/Index.vue
+++ b/pageE/order/Index.vue
@@ -112,8 +112,18 @@ export default {
this.current = Number(option.current);
this.swiperCurrent = this.current;
}
+ this.getOrderList();
},
methods: {
+ getOrderList() {
+ this.$u.api.getOrderList({
+ page: this.page,
+ }).then(res => {
+ if(res.errCode == 0) {
+
+ }
+ })
+ },
reachBottom() {
// console.log(this.page);
if(this.page >= 3) return;
diff --git a/pages.json b/pages.json
index 10063a7..948daad 100644
--- a/pages.json
+++ b/pages.json
@@ -155,12 +155,6 @@
"text":"搜索",
"float":"right",
"fontSize":"16"
- },
- {
- "type":"none",
- "text":"\ue582",
- "float":"left",
- "fontSize":"16"
}
],
"searchInput": {
@@ -316,9 +310,6 @@
}
}
}
-
-
-
]
},
{
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 369bb41..b21c5d5 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -23,10 +23,10 @@
-
+
-
+
@@ -60,18 +60,19 @@
-
-
-
-
+
+
-
+
+
-
+
+
@@ -154,6 +155,9 @@
height: 282rpx;
margin-top: 30rpx;
display: flex;
+ > view:not(:last-child) {
+ margin-right: 23rpx;
+ }
}
}
}
@@ -180,6 +184,7 @@ export default {
num:0,
page: 0, // 0即第一页
articleList: [],
+ recommendList: [], // 推荐达人
}
},
components:{
@@ -188,12 +193,13 @@ export default {
indexad,
darenItem
},
- onLoad(){
- this.getArticlelist();
+ onShow(){
+ this.getArticlelist();
+ this.getRecommendList();
},
methods:{
dianji(a){
- console.log(a)
+ // console.log(a)
if(typeof a == "object"){
this.num = a.detail.current
}else{
@@ -209,7 +215,14 @@ export default {
this.articleList = res.data.list;
}
})
- }
+ },
+ getRecommendList() {
+ this.$u.api.getRecommendList().then(res => {
+ if(res.errCode == 0) {
+ this.recommendList = res.data.list;
+ }
+ })
+ },
},
}
\ No newline at end of file
diff --git a/pages/mine/index.vue b/pages/mine/index.vue
index 11c0ba1..b4751db 100644
--- a/pages/mine/index.vue
+++ b/pages/mine/index.vue
@@ -113,6 +113,10 @@
投诉意见
+
+
+ 投诉意见11
+
@@ -120,6 +124,7 @@
@@ -189,8 +198,15 @@ export default {
}
.fenlei{
display: flex;
- justify-content: space-between;
+ // justify-content: space-between;
margin-top: 30rpx;
+ flex-wrap: wrap;
+ > view {
+ margin-bottom: 30rpx;
+ &:not(:nth-child(5n)) {
+ margin-right: 70rpx;
+ }
+ }
}
.hr{
width: 750rpx;
diff --git a/static/js/classify.data.js b/static/js/classify.data.js
deleted file mode 100644
index db90f5e..0000000
--- a/static/js/classify.data.js
+++ /dev/null
@@ -1,1087 +0,0 @@
-export default[
- {
- "name": "女装",
- "foods": [
- {
- "name": "A字裙",
- "key": "A字裙",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/1.jpg",
- "cat": 10
- },
- {
- "name": "T恤",
- "key": "T恤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/2.jpg",
- "cat": 10
- },
- {
- "name": "半身裙",
- "key": "半身裙",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/3.jpg",
- "cat": 10
- },
- {
- "name": "衬衫",
- "key": "衬衫",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/4.jpg",
- "cat": 10
- },
- {
- "name": "短裙",
- "key": "短裙",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/5.jpg",
- "cat": 10
- },
- {
- "name": "阔腿裤",
- "key": "阔腿裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/6.jpg",
- "cat": 10
- },
- {
- "name": "连衣裙",
- "key": "连衣裙",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/7.jpg",
- "cat": 10
- },
- {
- "name": "妈妈装",
- "key": "妈妈装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/8.jpg",
- "cat": 10
- },
- {
- "name": "牛仔裤",
- "key": "牛仔裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/9.jpg",
- "cat": 10
- },
- {
- "name": "情侣装",
- "key": "情侣装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/10.jpg",
- "cat": 10
- },
- {
- "name": "休闲裤",
- "key": "休闲裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/11.jpg",
- "cat": 10
- },
- {
- "name": "雪纺衫",
- "key": "雪纺衫",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/12.jpg",
- "cat": 10
- },
- {
- "name": "防晒衣",
- "key": "防晒衣",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/13.jpg",
- "cat": 10
- },
- {
- "name": "礼服/婚纱",
- "key": "礼服婚纱",
- "icon": "https://cdn.uviewui.com/uview/common/classify/1/14.jpg",
- "cat": 10
- }
- ]
- },
- {
- "name": "美食",
- "foods": [
- {
- "name": "火锅",
- "key": "火锅",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/1.jpg",
- "cat": 6
- },
- {
- "name": "糕点饼干",
- "key": "糕点饼干",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/2.jpg",
- "cat": 6
- },
- {
- "name": "坚果果干",
- "key": "坚果果干",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/3.jpg",
- "cat": 6
- },
- {
- "name": "酒类",
- "key": "酒类",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/4.jpg",
- "cat": 6
- },
- {
- "name": "辣条",
- "key": "辣条",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/5.jpg",
- "cat": 6
- },
- {
- "name": "大礼包",
- "key": "大礼包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/6.jpg",
- "cat": 6
- },
- {
- "name": "精品茗茶",
- "key": "茶",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/7.jpg",
- "cat": 6
- },
- {
- "name": "休闲食品",
- "key": "休闲食品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/8.jpg",
- "cat": 6
- },
- {
- "name": "糖果巧克力",
- "key": "糖果巧克力",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/9.jpg",
- "cat": 6
- },
- {
- "name": "方便速食",
- "key": "方便速食",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/10.jpg",
- "cat": 6
- },
- {
- "name": "营养代餐",
- "key": "营养代餐",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/11.jpg",
- "cat": 6
- },
- {
- "name": "粮油副食",
- "key": "粮油",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/12.jpg",
- "cat": 6
- },
- {
- "name": "生鲜水果",
- "key": "水果",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/13.jpg",
- "cat": 6
- },
- {
- "name": "饮品",
- "key": "饮品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/2/14.jpg",
- "cat": 6
- }
- ]
- },
- {
- "name": "美妆",
- "foods": [
- {
- "name": "化妆刷",
- "key": "化妆刷",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/1.jpg",
- "cat": 3
- },
- {
- "name": "粉底",
- "key": "粉底",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/2.jpg",
- "cat": 3
- },
- {
- "name": "洗发护发",
- "key": "洗发护发",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/3.jpg",
- "cat": 3
- },
- {
- "name": "美容工具",
- "key": "美容工具",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/4.jpg",
- "cat": 3
- },
- {
- "name": "眼部护理",
- "key": "眼部护理",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/5.jpg",
- "cat": 3
- },
- {
- "name": "眉妆",
- "key": "眉妆",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/6.jpg",
- "cat": 3
- },
- {
- "name": "卸妆品",
- "key": "卸妆品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/7.jpg",
- "cat": 3
- },
- {
- "name": "基础护肤",
- "key": "基础护肤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/8.jpg",
- "cat": 3
- },
- {
- "name": "眼妆",
- "key": "眼妆",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/9.jpg",
- "cat": 3
- },
- {
- "name": "唇妆",
- "key": "唇妆",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/10.jpg",
- "cat": 3
- },
- {
- "name": "面膜",
- "key": "面膜",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/11.jpg",
- "cat": 3
- },
- {
- "name": "沐浴用品",
- "key": "沐浴用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/12.jpg",
- "cat": 3
- },
- {
- "name": "护肤套装",
- "key": "护肤套装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/13.jpg",
- "cat": 3
- },
- {
- "name": "防晒品",
- "key": "防晒品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/14.jpg",
- "cat": 3
- },
- {
- "name": "美甲",
- "key": "美甲",
- "icon": "https://cdn.uviewui.com/uview/common/classify/3/15.jpg",
- "cat": 3
- }
-
- ]
- },
- {
- "name": "居家日用",
- "foods": [
- {
- "name": "垃圾袋",
- "key": "垃圾袋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/1.jpg",
- "cat": 4
- },
- {
- "name": "纸巾",
- "key": "纸巾",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/2.jpg",
- "cat": 4
- },
- {
- "name": "驱蚊用品",
- "key": "驱蚊用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/3.jpg",
- "cat": 4
- },
- {
- "name": "收纳神器",
- "key": "收纳神器",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/4.jpg",
- "cat": 4
- },
- {
- "name": "厨房用品",
- "key": "厨房用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/5.jpg",
- "cat": 4
- },
- {
- "name": "厨房烹饪",
- "key": "烹饪",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/6.jpg",
- "cat": 4
- },
- {
- "name": "衣物晾晒",
- "key": "衣物晾晒",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/7.jpg",
- "cat": 4
- },
- {
- "name": "衣物护理",
- "key": "衣物护理",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/8.jpg",
- "cat": 4
- },
- {
- "name": "宠物用品",
- "key": "宠物用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/9.jpg",
- "cat": 4
- },
- {
- "name": "医药保健",
- "key": "医药",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/10.jpg",
- "cat": 4
- },
- {
- "name": "日用百货",
- "key": "百货",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/11.jpg",
- "cat": 4
- },
- {
- "name": "清洁用品",
- "key": "清洁",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/12.jpg",
- "cat": 4
- },
- {
- "name": "绿植园艺",
- "key": "绿植",
- "icon": "https://cdn.uviewui.com/uview/common/classify/4/13.jpg",
- "cat": 4
- }
- ]
- },
- {
- "name": "男装",
- "foods": [
- {
- "name": "爸爸装",
- "key": "爸爸装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/1.jpg",
- "cat": 12
- },
- {
- "name": "牛仔裤",
- "key": "牛仔裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/2.jpg",
- "cat": 12
- },
- {
- "name": "衬衫",
- "key": "衬衫",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/3.jpg",
- "cat": 12
- },
- {
- "name": "休闲裤",
- "key": "休闲裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/4.jpg",
- "cat": 12
- },
- {
- "name": "外套",
- "key": "外套",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/5.jpg",
- "cat": 12
- },
- {
- "name": "T恤",
- "key": "T恤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/6.jpg",
- "cat": 12
- },
- {
- "name": "套装",
- "key": "套装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/7.jpg",
- "cat": 12
- },
- {
- "name": "运动裤",
- "key": "运动裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/8.jpg",
- "cat": 12
- },
- {
- "name": "马甲/背心",
- "key": "马甲背心",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/9.jpg",
- "cat": 12
- },
- {
- "name": "POLO衫",
- "key": "POLO衫",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/10.jpg",
- "cat": 12
- },
- {
- "name": "商务装",
- "key": "商务装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/5/11.jpg",
- "cat": 12
- }
- ]
- },
- {
- "name": "鞋品",
- "foods": [
- {
- "name": "单鞋",
- "key": "单鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/1.jpg",
- "cat": 5
- },
- {
- "name": "皮鞋",
- "key": "皮鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/2.jpg",
- "cat": 5
- },
- {
- "name": "帆布鞋",
- "key": "帆布鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/3.jpg",
- "cat": 5
- },
- {
- "name": "北京老布鞋",
- "key": "北京老布鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/4.jpg",
- "cat": 5
- },
- {
- "name": "运动鞋",
- "key": "运动鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/5.jpg",
- "cat": 5
- },
- {
- "name": "拖鞋",
- "key": "拖鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/6.jpg",
- "cat": 5
- },
- {
- "name": "凉鞋",
- "key": "凉鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/7.jpg",
- "cat": 5
- },
- {
- "name": "休闲鞋",
- "key": "休闲鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/8.jpg",
- "cat": 5
- },
- {
- "name": "高跟鞋",
- "key": "高跟鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/9.jpg",
- "cat": 5
- },
- {
- "name": "老人鞋",
- "key": "老人鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/10.jpg",
- "cat": 5
- },
- {
- "name": "懒人鞋",
- "key": "懒人鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/6/11.jpg",
- "cat": 5
- }
- ]
- },
- {
- "name": "数码家电",
- "foods": [
- {
- "name": "数据线",
- "key": "数据线",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/1.jpg",
- "cat": 8
- },
- {
- "name": "耳机",
- "key": "耳机",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/2.jpg",
- "cat": 8
- },
- {
- "name": "生活家电",
- "key": "家电",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/3.jpg",
- "cat": 8
- },
- {
- "name": "电风扇",
- "key": "电风扇",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/4.jpg",
- "cat": 8
- },
- {
- "name": "电吹风",
- "key": "电吹风",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/5.jpg",
- "cat": 8
- },
- {
- "name": "手机壳",
- "key": "手机壳",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/6.jpg",
- "cat": 8
- },
- {
- "name": "榨汁机",
- "key": "榨汁机",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/7.jpg",
- "cat": 8
- },
- {
- "name": "小家电",
- "key": "小家电",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/8.jpg",
- "cat": 8
- },
- {
- "name": "数码电子",
- "key": "数码",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/9.jpg",
- "cat": 8
- },
- {
- "name": "电饭锅",
- "key": "电饭锅",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/10.jpg",
- "cat": 8
- },
- {
- "name": "手机支架",
- "key": "手机支架",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/11.jpg",
- "cat": 8
- },
- {
- "name": "剃须刀",
- "key": "剃须刀",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/12.jpg",
- "cat": 8
- },
- {
- "name": "充电宝",
- "key": "充电宝",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/13.jpg",
- "cat": 8
- },
- {
- "name": "手机配件",
- "key": "手机配件",
- "icon": "https://cdn.uviewui.com/uview/common/classify/7/14.jpg",
- "cat": 8
- }
- ]
- },
- {
- "name": "母婴",
- "foods": [
- {
- "name": "婴童服饰",
- "key": "衣服",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/1.jpg",
- "cat": 2
- },
- {
- "name": "玩具乐器",
- "key": "玩具乐器",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/2.jpg",
- "cat": 2
- },
- {
- "name": "尿不湿",
- "key": "尿不湿",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/3.jpg",
- "cat": 2
- },
- {
- "name": "安抚牙胶",
- "key": "安抚牙胶",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/4.jpg",
- "cat": 2
- },
- {
- "name": "奶瓶奶嘴",
- "key": "奶瓶奶嘴",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/5.jpg",
- "cat": 2
- },
- {
- "name": "孕妈用品",
- "key": "孕妈用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/6.jpg",
- "cat": 2
- },
- {
- "name": "宝宝用品",
- "key": "宝宝用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/7.jpg",
- "cat": 2
- },
- {
- "name": "婴童湿巾",
- "key": "湿巾",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/8.jpg",
- "cat": 2
- },
- {
- "name": "喂养洗护",
- "key": "洗护",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/9.jpg",
- "cat": 2
- },
- {
- "name": "婴童鞋靴",
- "key": "童鞋",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/10.jpg",
- "cat": 2
- },
- {
- "name": "口水巾",
- "key": "口水巾",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/11.jpg",
- "cat": 2
- },
- {
- "name": "营养辅食",
- "key": "营养",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/12.jpg",
- "cat": 2
- },
- {
- "name": "婴幼书籍",
- "key": "书籍",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/13.jpg",
- "cat": 2
- },
- {
- "name": "婴儿车",
- "key": "婴儿车",
- "icon": "https://cdn.uviewui.com/uview/common/classify/8/14.jpg",
- "cat": 2
- }
- ]
- },
- {
- "name": "箱包",
- "foods": [
- {
- "name": "单肩包",
- "key": "单肩包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/1.jpg",
- "cat": 0
- },
- {
- "name": "斜挎包",
- "key": "斜挎包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/2.jpg",
- "cat": 0
- },
- {
- "name": "女包",
- "key": "女包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/3.jpg",
- "cat": 0
- },
- {
- "name": "男包",
- "key": "男包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/4.jpg",
- "cat": 0
- },
- {
- "name": "双肩包",
- "key": "双肩包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/5.jpg",
- "cat": 0
- },
- {
- "name": "小方包",
- "key": "小方包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/6.jpg",
- "cat": 0
- },
- {
- "name": "钱包",
- "key": "钱包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/7.jpg",
- "cat": 0
- },
- {
- "name": "旅行箱包",
- "key": "旅行箱包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/8.jpg",
- "cat": 0
- },
- {
- "name": "零钱包",
- "key": "零钱包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/9.jpg",
- "cat": 0
- },
- {
- "name": "手提包",
- "key": "手提包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/10.jpg",
- "cat": 0
- },
- {
- "name": "胸包",
- "key": "胸包",
- "icon": "https://cdn.uviewui.com/uview/common/classify/9/11.jpg",
- "cat": 0
- }
- ]
- },
- {
- "name": "内衣",
- "foods": [
- {
- "name": "袜子",
- "key": "袜子",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/1.jpg",
- "cat": 11
- },
- {
- "name": "吊带背心",
- "key": "吊带背心",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/2.jpg",
- "cat": 11
- },
- {
- "name": "抹胸",
- "key": "抹胸",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/3.jpg",
- "cat": 11
- },
- {
- "name": "内裤",
- "key": "内裤",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/4.jpg",
- "cat": 11
- },
- {
- "name": "文胸",
- "key": "文胸",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/5.jpg",
- "cat": 11
- },
- {
- "name": "文胸套装",
- "key": "文胸套装",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/6.jpg",
- "cat": 11
- },
- {
- "name": "打底塑身",
- "key": "打底塑身",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/7.jpg",
- "cat": 11
- },
- {
- "name": "家居服",
- "key": "家居服",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/8.jpg",
- "cat": 11
- },
- {
- "name": "船袜",
- "key": "船袜",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/9.jpg",
- "cat": 11
- },
- {
- "name": "情侣睡衣",
- "key": "情侣睡衣",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/10.jpg",
- "cat": 11
- },
- {
- "name": "丝袜",
- "key": "丝袜",
- "icon": "https://cdn.uviewui.com/uview/common/classify/10/11.jpg",
- "cat": 11
- }
- ]
- },
- {
- "name": "文娱车品",
- "foods": [
- {
- "name": "车市车品",
- "key": "车市车品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/1.jpg",
- "cat": 7
- },
- {
- "name": "办公文具",
- "key": "办公文具",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/2.jpg",
- "cat": 7
- },
- {
- "name": "考试必备",
- "key": "考试必备",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/3.jpg",
- "cat": 7
- },
- {
- "name": "笔记本",
- "key": "笔记本",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/4.jpg",
- "cat": 7
- },
- {
- "name": "艺术礼品",
- "key": "礼品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/5.jpg",
- "cat": 7
- },
- {
- "name": "书写工具",
- "key": "书写工具",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/6.jpg",
- "cat": 7
- },
- {
- "name": "车载电器",
- "key": "车载电器",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/7.jpg",
- "cat": 7
- },
- {
- "name": "图书音像",
- "key": "图书音像",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/8.jpg",
- "cat": 7
- },
- {
- "name": "画具画材",
- "key": "画具画材",
- "icon": "https://cdn.uviewui.com/uview/common/classify/11/9.jpg",
- "cat": 7
- }
- ]
- },
- {
- "name": "配饰",
- "foods": [
- {
- "name": "太阳镜",
- "key": "太阳镜",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/1.jpg",
- "cat": 0
- },
- {
- "name": "皮带",
- "key": "皮带",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/2.jpg",
- "cat": 0
- },
- {
- "name": "棒球帽",
- "key": "棒球帽",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/3.jpg",
- "cat": 0
- },
- {
- "name": "手表",
- "key": "手表",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/4.jpg",
- "cat": 0
- },
- {
- "name": "发饰",
- "key": "发饰",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/5.jpg",
- "cat": 0
- },
- {
- "name": "项链",
- "key": "项链",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/6.jpg",
- "cat": 0
- },
- {
- "name": "手饰",
- "key": "手饰",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/7.jpg",
- "cat": 0
- },
- {
- "name": "耳环",
- "key": "耳环",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/8.jpg",
- "cat": 0
- },
- {
- "name": "帽子丝巾",
- "key": "帽子丝巾",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/9.jpg",
- "cat": 0
- },
- {
- "name": "眼镜墨镜",
- "key": "眼镜墨镜",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/10.jpg",
- "cat": 0
- },
- {
- "name": "发带发箍",
- "key": "发带发箍",
- "icon": "https://cdn.uviewui.com/uview/common/classify/12/11.jpg",
- "cat": 0
- }
- ]
- },
- {
- "name": "家装家纺",
- "foods": [
- {
- "name": "家居饰品",
- "key": "家居饰品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/1.jpg",
- "cat": 0
- },
- {
- "name": "凉席",
- "key": "凉席",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/2.jpg",
- "cat": 0
- },
- {
- "name": "背枕靠枕",
- "key": "靠枕",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/3.jpg",
- "cat": 0
- },
- {
- "name": "床上用品",
- "key": "床上用品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/4.jpg",
- "cat": 0
- },
- {
- "name": "摆件",
- "key": "摆件",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/5.jpg",
- "cat": 0
- },
- {
- "name": "四件套",
- "key": "四件套",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/6.jpg",
- "cat": 0
- },
- {
- "name": "装饰品",
- "key": "装饰品",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/7.jpg",
- "cat": 0
- },
- {
- "name": "卫浴用品",
- "key": "卫浴",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/8.jpg",
- "cat": 0
- },
- {
- "name": "家居家装",
- "key": "家具",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/9.jpg",
- "cat": 0
- },
- {
- "name": "蚊帐",
- "key": "蚊帐",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/10.jpg",
- "cat": 0
- },
- {
- "name": "墙纸贴纸",
- "key": "墙纸",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/11.jpg",
- "cat": 0
- },
- {
- "name": "空调被",
- "key": "空调被",
- "icon": "https://cdn.uviewui.com/uview/common/classify/13/12.jpg",
- "cat": 0
- }
- ]
- },
- {
- "name": "户外运动",
- "foods": [
- {
- "name": "游泳装备",
- "key": "游泳",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/1.jpg",
- "cat": 0
- },
- {
- "name": "泳镜",
- "key": "泳镜",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/2.jpg",
- "cat": 0
- },
- {
- "name": "户外装备",
- "key": "户外",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/3.jpg",
- "cat": 0
- },
- {
- "name": "健身服饰",
- "key": "健身",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/4.jpg",
- "cat": 0
- },
- {
- "name": "泳衣",
- "key": "泳衣",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/5.jpg",
- "cat": 0
- },
- {
- "name": "瑜伽垫",
- "key": "瑜伽垫",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/6.jpg",
- "cat": 0
- },
- {
- "name": "瑜伽用品",
- "key": "瑜伽",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/7.jpg",
- "cat": 0
- },
- {
- "name": "健身装备",
- "key": "健身",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/8.jpg",
- "cat": 0
- },
- {
- "name": "球迷用品",
- "key": "球迷",
- "icon": "https://cdn.uviewui.com/uview/common/classify/14/9.jpg",
- "cat": 0
- }
- ]
- }
- ]
\ No newline at end of file
--
2.45.2