goods_cate.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <view :style="colorStyle">
  3. <goodsCate1 v-show="category==1" ref="classOne"></goodsCate1>
  4. <goodsCate2 v-show="category==2" ref="classTwo" @jumpIndex="jumpIndex"></goodsCate2>
  5. <goodsCate3 v-show="category==3" ref="classThree" @jumpIndex="jumpIndex"></goodsCate3>
  6. </view>
  7. </template>
  8. <script>
  9. import colors from "@/mixins/color";
  10. import goodsCate1 from './goods_cate1';
  11. import goodsCate2 from './goods_cate2';
  12. import goodsCate3 from './goods_cate3';
  13. import {
  14. colorChange
  15. } from '@/api/api.js';
  16. import {
  17. mapGetters
  18. } from 'vuex';
  19. import tabBar from "@/pages/index/visualization/components/tabBar.vue"
  20. export default {
  21. computed: mapGetters(['isLogin', 'uid']),
  22. components: {
  23. goodsCate1,
  24. goodsCate2,
  25. goodsCate3,
  26. tabBar
  27. },
  28. mixins: [colors],
  29. data() {
  30. return {
  31. category: '',
  32. is_diy: uni.getStorageSync('is_diy'),
  33. status: 0,
  34. }
  35. },
  36. onLoad() {
  37. this.classStyle();
  38. },
  39. onReady() {
  40. },
  41. onShow() {
  42. if (this.status == 2 || this.status == 3) {
  43. uni.hideTabBar();
  44. } else if (this.status == 1) {
  45. if (!this.is_diy) {
  46. uni.hideTabBar();
  47. } else {
  48. this.$refs.classOne.getNav();
  49. }
  50. }
  51. },
  52. methods: {
  53. jumpIndex() {
  54. if (this.is_diy) {
  55. if (!uni.getStorageSync('FOOTER_BAR')) {
  56. uni.showTabBar()
  57. }
  58. }
  59. },
  60. classStyle() {
  61. colorChange('category').then(res => {
  62. let status = res.data.status;
  63. this.status = res.data.status
  64. this.category = status
  65. if (status == 2) {
  66. if (this.isLogin) {
  67. this.$refs.classTwo.getCartNum();
  68. this.$refs.classTwo.getCartList(1);
  69. }
  70. this.$refs.classTwo.getAllCategory()
  71. }
  72. if (status == 3) {
  73. if (this.isLogin) {
  74. this.$refs.classThree.getCartNum();
  75. this.$refs.classThree.getCartList(1);
  76. }
  77. this.$refs.classThree.getAllCategory()
  78. }
  79. if (status == 2 || status == 3) {
  80. uni.hideTabBar()
  81. } else {
  82. if (!this.is_diy) {
  83. uni.hideTabBar()
  84. } else {
  85. this.$refs.classOne.getNav();
  86. }
  87. }
  88. })
  89. }
  90. },
  91. onReachBottom: function() {
  92. if (this.category == 2) {
  93. this.$refs.classTwo.productslist();
  94. }
  95. if (this.category == 3) {
  96. this.$refs.classThree.productslist();
  97. }
  98. }
  99. }
  100. </script>
  101. <style scoped lang="scss">
  102. /deep/.mask {
  103. z-index: 99;
  104. }
  105. </style>