|
@@ -757,6 +757,13 @@ export default {
|
|
|
computed: {
|
|
|
...mapGetters(['mustChangePwd'])
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ hiddenBizData (newValue, oldValue) {
|
|
|
+ if (!newValue) {
|
|
|
+ this.getBizData()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
hasNewProduct () {
|
|
|
queryNewProductPage({ pageNo: 1, pageSize: 20, onlineFalg: this.onlineFalg }).then(res => {
|
|
@@ -840,7 +847,6 @@ export default {
|
|
|
activated () {
|
|
|
// 请求导航指引合计
|
|
|
this.getNavCount()
|
|
|
- this.getBizData()
|
|
|
this.getMerchantData()
|
|
|
},
|
|
|
beforeRouteEnter (to, from, next) {
|