diff --git a/src/views/material/cost/component/reportHome.vue b/src/views/material/cost/component/reportHome.vue
index d3ff40e0..3a870f82 100644
--- a/src/views/material/cost/component/reportHome.vue
+++ b/src/views/material/cost/component/reportHome.vue
@@ -130,6 +130,8 @@
+
+
@@ -916,6 +918,7 @@ export default {
// 定义Excel列配置
const columns = [
{ key: 'index', title: '序号' },
+ { key: 'impUnitName', title: '分公司' },
{ key: 'agreementCode', title: '协议号' },
{ key: 'unitName', title: '结算单位' },
{ key: 'projectName', title: '结算工程' },
@@ -925,7 +928,9 @@ export default {
{ key: 'repairCost', title: '维修费用' },
{ key: 'loseCost', title: '丢失费用' },
{ key: 'scrapCost', title: '报废费用' },
- { key: 'costs', title: '合计费用(元)' }
+ { key: 'costs', title: '合计费用(元)' },
+ { key: 'proStatus', title: '工程状态' },
+ { key: 'actualEndDate', title: '竣工日期' }
];
// 准备Excel数据
@@ -965,6 +970,7 @@ export default {
// 设置列宽
const columnWidths = [
{ wch: 8 }, // 序号
+ { wch: 15 }, // 分公司
{ wch: 20 }, // 协议号
{ wch: 15 }, // 结算单位
{ wch: 20 }, // 结算工程
@@ -974,7 +980,9 @@ export default {
{ wch: 12 }, // 维修费用
{ wch: 12 }, // 丢失费用
{ wch: 12 }, // 报废费用
- { wch: 15 } // 合计费用
+ { wch: 15 }, // 合计费用
+ { wch: 12 }, // 工程状态
+ { wch: 12 } // 竣工日期
];
worksheet['!cols'] = columnWidths;
diff --git a/src/views/material/stquery/deviceUsingRecord.vue b/src/views/material/stquery/deviceUsingRecord.vue
index 1cd2d984..93691b39 100644
--- a/src/views/material/stquery/deviceUsingRecord.vue
+++ b/src/views/material/stquery/deviceUsingRecord.vue
@@ -139,6 +139,8 @@
+
+