huminmin
15 小时以前 21ca758af0d10c9545520d6a068e78148deb113c
生成核算增加日期搜索
已修改1个文件
14 ■■■■■ 文件已修改
src/views/productionManagement/productionCosting/index.vue 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionCosting/index.vue
@@ -49,7 +49,7 @@
                        :column="tableColumn"
                        :tableData="tableData"
                        :page="page1"
                        :tableLoading="tableLoading"
                        :tableLoading="tableLoading1"
                        style="margin-right: 20px;"
                        @pagination="pagination1"
                    ></PIMTable>
@@ -217,11 +217,14 @@
    const params = { ...searchForm.value, ...page };
  salesLedgerProductionAccountingList(params).then((res) => {
        tableLoading.value = false;
        const records = res.data.records || [];
    leftTableData.value = records;
        page.total = res.data.total || 0;
    });
    }).finally(() => {
    tableLoading.value = false;
  })
};
@@ -229,10 +232,11 @@
  tableLoading1.value = true;
  const params = { ...page1, ...searchForm.value };
  salesLedgerProductionAccountingListProductionDetails(params).then((res) => {
    tableLoading1.value = false;
    tableData.value = res.data.records || [];;
    page1.total = res.data.total || 0;
  });
  }).finally(() => {
    tableLoading1.value = false;
  })
};
// 构建左侧汇总台账(按生产人汇总产量、工资等)