From 3629dde86000f6412b35aea04399983921df7099 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期四, 15 五月 2025 17:50:08 +0800 Subject: [PATCH] 1、OEE报表计算功能 选择时间添加限制,禁止选择选今天及未来日期 2、解决车间布局图点击设备详细弹窗展示异常问题(删除车间看板页面独立的详情弹窗组件,沿用设备监控页面详情弹窗组件) --- src/views/eam/maintenance/EamInspectionOrderList.vue | 23 +---------------------- 1 files changed, 1 insertions(+), 22 deletions(-) diff --git a/src/views/eam/maintenance/EamInspectionOrderList.vue b/src/views/eam/maintenance/EamInspectionOrderList.vue index 8eb2f4c..bc708f8 100644 --- a/src/views/eam/maintenance/EamInspectionOrderList.vue +++ b/src/views/eam/maintenance/EamInspectionOrderList.vue @@ -77,27 +77,6 @@ class="j-table-force-nowrap" @change="handleTableChange"> - <template slot="htmlSlot" slot-scope="text"> - <div v-html="text"></div> - </template> - <template slot="imgSlot" slot-scope="text,record"> - <span v-if="!text" style="font-size: 12px;font-style: italic;">鏃犲浘鐗�</span> - <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" - style="max-width:80px;font-size: 12px;font-style: italic;"/> - </template> - <template slot="fileSlot" slot-scope="text"> - <span v-if="!text" style="font-size: 12px;font-style: italic;">鏃犳枃浠�</span> - <a-button - v-else - :ghost="true" - type="primary" - icon="download" - size="small" - @click="downloadFile(text)"> - 涓嬭浇 - </a-button> - </template> - <span slot="action" slot-scope="text, record"> <a @click="handleEdit(record)" v-if="isShowAuth('eam:inspection:edit') && record.inspectionStatus === 'WAIT_INSPECTION'" >缂栬緫</a> @@ -268,7 +247,7 @@ dataIndex: 'action', align: 'center', fixed: 'right', - width: 147, + width: 200, scopedSlots: { customRender: 'action' } } this.columns = [...this.columns, operationColumn] -- Gitblit v1.9.3