Browse Source

feat: quick quote 显示控制.

peter 5 months ago
parent
commit
404ef5363b
1 changed files with 13 additions and 4 deletions
  1. 13 4
      components/product/ProductRight.vue

+ 13 - 4
components/product/ProductRight.vue

@@ -438,6 +438,13 @@ export default {
       }
     }
   },
+  async fetch() {
+    this.$store.dispatch('getShopInfo').then(res => {
+      console.log(res.hide_prices)
+      console.log(typeof res.hide_prices)
+      this.tabList[1].isShow = [0, '0'].includes(res.hide_prices)
+    })
+  },
   computed: {
     currentPre(){
       return this.$store.state.product.smImgUlIdx
@@ -579,9 +586,11 @@ export default {
     },
     clickNav(i) {
       if (this.typeTab == 1 && !this.tabList[1].isClick) {
-            this.$refs.quote.getQuote()
-            this.$refs.quote.getWeight()
-            this.tabList[1].isClick = true
+        if (this.tabList[1].isShow) {
+          this.$refs.quote.getQuote()
+          this.$refs.quote.getWeight()
+          this.tabList[1].isClick = true
+        }
         // this.checkNav(1)
       } else if (this.typeTab == 2 && !this.tabList[2].isClick) {
         this.checkNav(2)
@@ -591,7 +600,7 @@ export default {
       if (this.isLogin) {
         this.getUserInfo()
         if (this.userInfo.audit_status == 1) {
-          if (i == 1) {
+          if (i == 1 && this.tabList[1].isShow) {
             this.$refs.quote.getQuote()
             this.$refs.quote.getWeight()
             this.tabList[1].isClick = true