|
@@ -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
|