Explorar el Código

fix:修改发票管理分页异常问题

lazy hace 3 meses
padre
commit
66e88441d4
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/views/invoicesManagement/index.vue

+ 2 - 1
src/views/invoicesManagement/index.vue

@@ -45,6 +45,7 @@
             :table-options="getTableOptions"
             :data="tableData"
             :count="total"
+            parent-component="InvoicesManagement"
           />
         </div>
       </el-tabs>
@@ -111,7 +112,7 @@ export default {
         const { rows, records } = data.data
         this.loading = false
         this.tableData = rows
-        this.count = records
+        this.total = records
       })
     },
     submitForm(formName) {