Browse Source

修改权重明细的total显示

Sanmu8 1 year ago
parent
commit
13c34d7709
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/norm/feeindex.vue

+ 2 - 1
src/views/norm/feeindex.vue

@@ -206,6 +206,8 @@ export default {
       dictType: 'norm_uint'
     }).then(res => {
       this.unitSel = res.rows;
+      this.total = res.total;
+
     });
     this.getList();
   },
@@ -219,7 +221,6 @@ export default {
           response.rows[index].status = item.status == 0 ? false : true;
         });
         this.NORMFEEList = response.rows;
-        this.total = response.total;
         this.loading = false;
         this.$emit('dataHandler', response.rows);
       });