Procházet zdrojové kódy

修改发票管理,收货地址,收付款账户

shenjj před 7 roky
rodič
revize
b025536b36

+ 1 - 1
components/mobile/base/addressView.vue

@@ -137,7 +137,7 @@
       },
       // 发送请求数据
       reloadList () {
-        this.$store.dispatch('mobileAddress/loadAddressData', {count: this.param.count, page: this.param.page, isSend: this.isSend, sorting: this.param.sorting})
+        this.$store.dispatch('mobileAddress/loadAddressData', {count: this.param.count, page: this.param.page, isSend: this.isSend, sorting: this.param.sorting, _type: 'ship'})
       }
     },
     computed: {

+ 2 - 1
pages/mobile/center/user/payCenter.vue

@@ -544,7 +544,8 @@
           bankname: '',
           branchname: '',
           number: '',
-          accountname: ''
+          accountname: '',
+          accountType: 'PAY_TYPE'
         }
         this.validBankAccountObj = {
           bankname: false,

+ 2 - 1
pages/mobile/center/vendor/payCenter.vue

@@ -549,7 +549,8 @@
           bankname: '',
           branchname: '',
           number: '',
-          accountname: ''
+          accountname: '',
+          accountType: 'RECEIVE_TYPE'
         }
         this.validBankAccountObj = {
           bankname: false,

+ 1 - 1
pages/mobile/user/address.vue

@@ -15,7 +15,7 @@
     middleware: 'authenticated',
     fetch({store}) {
       return Promise.all([
-        store.dispatch('mobileAddress/loadAddressData', {count: 10, page: 1, isSend: false, sorting: { 'num': 'ASC' }})
+        store.dispatch('mobileAddress/loadAddressData', {count: 10, page: 1, isSend: false, sorting: { 'num': 'ASC' }, _type: 'ship'})
       ])
     },
     components: {