diff --git a/buyer/src/components/Search.vue b/buyer/src/components/Search.vue index e3c5fd54..fd9ed409 100644 --- a/buyer/src/components/Search.vue +++ b/buyer/src/components/Search.vue @@ -71,10 +71,15 @@ export default { this.search(); }, search () { // 全平台搜索商品 - this.$router.push({ - path: '/goodsList', - query: { keyword: this.searchData } - }); + const url = this.$route.path; + if(url == '/goodsList'){ + this.$emit('search', this.searchData) + }else{ + this.$router.push({ + path: '/goodsList', + query: { keyword: this.searchData } + }); + } }, searchStore () { // 店铺搜索商品 this.$emit('search', this.searchData) diff --git a/buyer/src/pages/home/userCenter/MoneyManagement.vue b/buyer/src/pages/home/userCenter/MoneyManagement.vue index cf709af4..2d5ee116 100644 --- a/buyer/src/pages/home/userCenter/MoneyManagement.vue +++ b/buyer/src/pages/home/userCenter/MoneyManagement.vue @@ -369,6 +369,8 @@ export default { return h('div', [h('span', {}, '申请中')]); } else if (params.row.applyStatus === 'VIA_AUDITING') { return h('div', [h('span', {}, '提现成功')]); + } else if (params.row.applyStatus === 'ERROR') { + return h('div', [h('span', {}, '提现失败')]); } else { return h('div', [h('span', {}, '审核拒绝')]); } diff --git a/buyer/src/pages/promotion/seckill.vue b/buyer/src/pages/promotion/seckill.vue index c7d8fcbb..f0d5c421 100644 --- a/buyer/src/pages/promotion/seckill.vue +++ b/buyer/src/pages/promotion/seckill.vue @@ -6,12 +6,7 @@
限时秒杀