zss
9 天以前 b1c1c1cc0c8b3282c2ff3514038a3ccb31ca025b
src/views/inventoryManagement/receiptManagement/Record.vue
@@ -129,7 +129,7 @@
const stockRecordTypeOptions = ref([]);
const page = reactive({
  current: 1,
  size: 100,
  size: 10,
});
const total = ref(0);
@@ -167,6 +167,7 @@
  getStockInRecordListPage(params)
      .then(res => {
        tableData.value = res.data.records;
        total.value = res.data.total || 0;
      }).finally(() => {
    tableLoading.value = false;
  })