category.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!-- 分类 -->
  2. <template>
  3. <view class="category-box">
  4. <!-- 三级分类 -->
  5. <three-catgory :categoryStyleId="categoryStyleId" v-if="categoryType === 4"></three-catgory>
  6. <!-- 二级分类 -->
  7. <two-catgory :categoryStyleId="categoryStyleId" v-if="categoryType === 3"></two-catgory>
  8. <!-- 一级分类-->
  9. <one-catgory :categoryStyleId="categoryStyleId" v-if="categoryType === 2"></one-catgory>
  10. <!--直接购买,点餐 -->
  11. <takeout-catgory :categoryStyleId="categoryStyleId" v-if="categoryType === 1"></takeout-catgory>
  12. <!-- 登录提示 -->
  13. <shopro-auth-modal v-if="authType"></shopro-auth-modal>
  14. <!-- <shopro-tabbar></shopro-tabbar> -->
  15. </view>
  16. </template>
  17. <script>
  18. import takeoutCatgory from './category/takeout-catgory.vue';
  19. import threeCatgory from './category/three-catgory.vue';
  20. import twoCatgory from './category/two-catgory.vue';
  21. import oneCatgory from './category/one-catgory.vue';
  22. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  23. export default {
  24. components: {
  25. takeoutCatgory,
  26. threeCatgory,
  27. twoCatgory,
  28. oneCatgory
  29. },
  30. data() {
  31. return {
  32. categoryType: 0, //1:快速购买,2:一级分类,3:二级分类,4:三级分类
  33. categoryStyleId: 0 //分类Id
  34. };
  35. },
  36. computed: {
  37. ...mapGetters(['authType'])
  38. },
  39. onLoad() {
  40. this.getCategory();
  41. },
  42. methods: {
  43. /**
  44. * 获取分类数据
  45. * type4:三级分类, type3:二级分类 ,type2:一级分类,type1:快速购买
  46. */
  47. getCategory() {
  48. this.$http('category.info', {
  49. id: this.$Route.query.id ? this.$Route.query.id : 0
  50. }).then(res => {
  51. if (res.code === 1) {
  52. if (res.data?.type) {
  53. this.categoryType = Number(res.data.type);
  54. this.categoryStyleId = Number(res.data.id);
  55. uni.setNavigationBarTitle({
  56. title: res.data?.name
  57. });
  58. }
  59. }
  60. });
  61. }
  62. }
  63. };
  64. </script>
  65. <style lang="scss">
  66. .category-box {
  67. height: 100%;
  68. flex: 1;
  69. overflow: hidden;
  70. }
  71. </style>