From 1cb38dbdb58bc3966453ca43585140323e50d1b8 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期三, 20 八月 2025 09:15:51 +0800 Subject: [PATCH] 1、二、三保工单增加批量打印及导出完工单和验收单功能 2、二保工单审批流程图展示增加滚动条 3、html导出成excel工具方法增加单元格换行展示以及自适应换行高度功能 --- src/views/eam/repair/EamRepairOrderList.vue | 63 +++++++++++++++++++++++++++++-- 1 files changed, 58 insertions(+), 5 deletions(-) diff --git a/src/views/eam/repair/EamRepairOrderList.vue b/src/views/eam/repair/EamRepairOrderList.vue index 2ddc3ed..d7946bc 100644 --- a/src/views/eam/repair/EamRepairOrderList.vue +++ b/src/views/eam/repair/EamRepairOrderList.vue @@ -35,6 +35,7 @@ <!-- 鎿嶄綔鎸夐挳鍖哄煙 --> <div class="table-operator" v-if="isDisplayOperation"> + <a-button type="primary" icon="download" @click="handleExportXls('缁翠慨宸ュ崟鍙拌处')">瀵煎嚭</a-button> <a-dropdown :disabled="selectedRowKeys.length == 0"> <a-menu slot="overlay"> <a-menu-item key="1" @click="handleBatchSubmit"> @@ -62,9 +63,12 @@ :scroll="{x:'max-content'}"> <span slot="action" slot-scope="text, record"> <template v-if="record.repairStatus=='PENDING_REPAIR'||record.repairStatus=='UNDER_MAINTENANCE' ||record.repairStatus=='REJECTED'"> - <a @click="handleFillIn(record)">濉姤</a> - <a-divider type="vertical"/> - <a-popconfirm title="纭畾鎻愪氦鍚�?" @confirm="() => handleSubmit(record.id)"> + <a-popconfirm v-if="record.claimStatus=='0' || record.claimStatus==null " title="纭畾鎻愪氦鍚�?" @confirm="() => handleClaim(record.id)"> + <a>棰嗗彇</a> + </a-popconfirm> + <a v-if="record.claimStatus=='1'" @click="handleFillIn(record)">缁翠慨</a> + <a-divider v-if="record.claimStatus=='1'" type="vertical"/> + <a-popconfirm v-if="record.claimStatus=='1'" title="纭畾鎻愪氦鍚�?" @confirm="() => handleSubmit(record.id)"> <a>鎻愪氦</a> </a-popconfirm> </template> @@ -163,6 +167,12 @@ fixed: 'left' }, { + title: '棰嗗彇鐘舵��', + align: 'center', + dataIndex: 'claimStatus_dictText', + fixed: 'left' + }, + { title: '宸ュ崟鍙�', align: 'center', dataIndex: 'repairCode', @@ -175,7 +185,13 @@ { title: '鎶ヤ慨浜�', align: 'center', - dataIndex: 'reportPerson', + dataIndex: 'reportPerson_dictText', + }, + { + title: '鏁呴殰寮�濮嬫椂闂�', + align: 'center', + dataIndex: 'faultStartTime', + width: 200 }, { title: '缁翠慨寮�濮嬫椂闂�', @@ -187,6 +203,18 @@ title: '缁翠慨缁撴潫鏃堕棿', align: 'center', dataIndex: 'actualEndTime', + width: 200 + }, + { + title: '缁翠慨鏃堕暱(灏忔椂)', + align: 'center', + dataIndex: 'repairDuration', + width: 200 + }, + { + title: '鏁呴殰鏃堕暱(灏忔椂)', + align: 'center', + dataIndex: 'faultDuration', width: 200 }, { @@ -246,8 +274,10 @@ url: { list: '/eam/eamRepairOrder/list', submit: '/eam/eamRepairOrder/submit', + claim: '/eam/eamRepairOrder/claim', delete: '/eam/eamRepairOrder/delete', - deleteBatch: '/eam/eamRepairOrder/deleteBatch' + deleteBatch: '/eam/eamRepairOrder/deleteBatch', + exportXlsUrl: "eam/eamRepairOrder/exportXls", } } }, @@ -300,6 +330,29 @@ }) }, + /** + * 鐐瑰嚮棰嗗彇鏃惰Е鍙� + * @param id + */ + handleClaim(id){ + this.loading = true + getAction(this.url.claim, { id }) + .then(res => { + if (res.success) { + this.$notification.success({ + message: '娑堟伅', + description: res.message + }) + this.loadData() + } else { + this.$notification.warning({ + message: '娑堟伅', + description: res.message + }) + this.loading = false + } + }) + }, // 鎵归噺鎻愪氦鏃惰Е鍙� handleBatchSubmit() { -- Gitblit v1.9.3