gaoluyang
10 天以前 e5ca1e228a70bbea525b7d36dc815a9666883f3b
src/views/qualityManagement/metricMaintenance/index.vue
@@ -70,7 +70,7 @@
          @selection-change="handleSelectionChange"
          :tableLoading="tableLoading"
          @pagination="pagination"
          :total="total"
          :total="page.total"
      ></PIMTable>
    </div>
  </div>
@@ -92,15 +92,14 @@
// 指标表格
const tableData = ref([]);
const tableLoading = ref(false);
const total = ref(0);
const page = reactive({
  current: 1,
  size: 10,
});
const tableColumn = ref([
  {
    label: "规格型号",
    prop: "model",
    label: "指标",
    prop: "parameterItem",
  },
  {
    label: "单位",
@@ -193,9 +192,8 @@
    current: page.current,
    size: page.size,
  }).then((res) => {
    console.log("res", res);
    tableData.value = res.records;
    total.value = res.total;
    page.total = res.total;
    tableLoading.value = false;
  });
};