Browse Source

修复指标详情内的total显示错误

Sanmu8 1 year ago
parent
commit
21c7d3c612
2 changed files with 9 additions and 4 deletions
  1. 6 3
      src/views/norm/feeindex.vue
  2. 3 1
      src/views/norm/index.vue

+ 6 - 3
src/views/norm/feeindex.vue

@@ -163,8 +163,8 @@
       </el-table>
 
       <pagination
-        v-show="total > 0"
-        :total="total"
+        v-show="totalNum > 0"
+        :total="totalNum"
         :page.sync="queryParams.pageNum"
         :limit.sync="queryParams.pageSize"
         @pagination="getList"
@@ -273,6 +273,10 @@ export default {
         return [];
       },
     },
+    totalNum:{
+      type:Number,
+      default:0
+    }
   },
   data() {
     return {
@@ -367,7 +371,6 @@ export default {
       dictType: "norm_uint",
     }).then((res) => {
       this.unitSel = res.rows;
-      this.total = res.total;
     });
     this.getList();
   },

+ 3 - 1
src/views/norm/index.vue

@@ -74,7 +74,7 @@
       </div>
     </el-dialog>
 
-    <feeindex @closeHandler="closeHandler" @dataHandler="dataHandler" :normData="normData" reset :normId="normId" :isShowNormDialog="isShowNormDialog" />
+    <feeindex :totalNum="totalNum" @closeHandler="closeHandler" @dataHandler="dataHandler" :normData="normData" reset :normId="normId" :isShowNormDialog="isShowNormDialog" />
   </div>
 </template>
 
@@ -109,6 +109,7 @@ export default {
       title: '',
       // 是否显示弹出层
       open: false,
+      totalNum:0,
       // 查询参数
       queryParams: {
         pageNum: 1,
@@ -293,6 +294,7 @@ export default {
         res.rows.forEach((item, index) => {
           res.rows[index].status = item.status == 0 ? false : true;
         });
+        this.totalNum = res.total
         this.normData = res.rows;
       });
       this.isShowNormDialog = !this.isShowNormDialog;