category.vue
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<template>
<view class="category-box">
<!-- 三级分类 -->
<sh-three-catgory :categoryId="categoryId" v-if="categoryType === 4"></sh-three-catgory>
<!-- 二级分类 -->
<sh-two-catgory :categoryId="categoryId" v-if="categoryType === 3"></sh-two-catgory>
<!-- 一级分类-->
<sh-one-catgory :categoryId="categoryId" v-if="categoryType === 2"></sh-one-catgory>
<!--直接购买,点餐 -->
<sh-takeout-catgory :categoryId="categoryId" v-if="categoryType === 1"></sh-takeout-catgory>
<!-- 自定义底部导航 -->
<shopro-tabbar v-if="queryObj.id" :queryObj="queryObj"></shopro-tabbar>
<!-- 关注弹窗 -->
<shopro-float-btn></shopro-float-btn>
<!-- 连续弹窗提醒 -->
<shopro-notice-modal></shopro-notice-modal>
<!-- 登录提示 -->
<shopro-login-modal></shopro-login-modal>
</view>
</template>
<script>
import shTakeoutCatgory from './components/category/sh-takeout-catgory.vue';
import shThreeCatgory from './components/category/sh-three-catgory.vue';
import shTwoCatgory from './components/category/sh-two-catgory.vue';
import shOneCatgory from './components/category/sh-one-catgory.vue';
export default {
components: {
shTakeoutCatgory,
shThreeCatgory,
shTwoCatgory,
shOneCatgory
},
data() {
return {
categoryType: 0, //1:快速购买,2:一级分类,3:二级分类,4:三级分类
categoryId: 0 ,//分类Id
queryObj:{}
};
},
computed: {},
onLoad(options) {
this.queryObj = options;
this.getCategory();
this.categoryId = Number(this.$Route.query.id);
},
methods: {
/**
* 获取分类数据
* type4:三级分类, type3:二级分类 ,type2:一级分类,type1:快速购买
*/
getCategory() {
this.$api('category', {
id: this.$Route.query.id
}).then(res => {
if (res.code === 1) {
this.categoryType = parseInt(res.data.type);
uni.setNavigationBarTitle({
title: res.data.name
});
}
});
}
}
};
</script>
<style lang="scss">
.category-box {
height: 100%;
flex: 1;
overflow: hidden;
}
</style>