From ec68cffd70d2a2788f7c74af55a11563aaf611d1 Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期三, 06 十二月 2023 15:47:38 +0800 Subject: [PATCH] 1、登录页面优化首次登录会出现404字样,需要明确用户登录后显示页面是否为首页/消息页或者角色中可设置 2、驱动参数管理页面新增或修改控制系统中英文名称规则限制字符数最少6位调整为2位 3、效率段管理页面效率段颜色可自定义 4、设备利用率、设备开动率、班次利用率页面增加可按照设备类型筛选查询 5、对比分析页面增加通过选择设备来对比 6、设备日利用率和设备日利用率对比页面优化选择树节点后查询区域的设备名称字段不会更新问题 --- src/views/eam/modules/dailyMaintenanceStandard/DailyMaintenanceStandardDetail.vue | 77 +++++++++++++++++++------------------- 1 files changed, 39 insertions(+), 38 deletions(-) diff --git a/src/views/eam/modules/dailyMaintenanceStandard/DailyMaintenanceStandardDetail.vue b/src/views/eam/modules/dailyMaintenanceStandard/DailyMaintenanceStandardDetail.vue index efb6d23..7059019 100644 --- a/src/views/eam/modules/dailyMaintenanceStandard/DailyMaintenanceStandardDetail.vue +++ b/src/views/eam/modules/dailyMaintenanceStandard/DailyMaintenanceStandardDetail.vue @@ -129,17 +129,13 @@ return parseInt(index) + 1; } }, - { - title: '閮ㄤ綅', - align: "center", - dataIndex: 'location', - }, - { - title: '绀烘剰鍥�', - align: "center", - dataIndex: 'photo', - scopedSlots: { customRender: 'photo' }, - }, + + // { + // title: '绀烘剰鍥�', + // align: "center", + // dataIndex: 'photo', + // scopedSlots: { customRender: 'photo' }, + // }, { title: '淇濆吇椤圭洰', align: "center", @@ -153,36 +149,41 @@ }, { - title: '鏂规硶', + title: '閮ㄤ綅', align: "center", - dataIndex: 'maintenanceMethodName', + dataIndex: 'location', + }, + // { + // title: '鏂规硶', + // align: "center", + // dataIndex: 'maintenanceMethodName', - }, - { - title: '宸ュ叿', - align: "center", - dataIndex: 'maintenanceTool', - }, - { - title: '瀹夊叏瑕佹眰', - align: "center", - dataIndex: 'maintenanceRequire', - }, - { - title: '宸ユ椂瀹氶', - align: "center", - dataIndex: 'workingHourQuota', - }, + // }, + // { + // title: '宸ュ叿', + // align: "center", + // dataIndex: 'maintenanceTool', + // }, + // { + // title: '瀹夊叏瑕佹眰', + // align: "center", + // dataIndex: 'maintenanceRequire', + // }, + // { + // title: '宸ユ椂瀹氶', + // align: "center", + // dataIndex: 'workingHourQuota', + // }, { title: '淇濆吇鍛ㄦ湡', align: "center", dataIndex: 'maintenanceCycleName', }, - { - title: '缁翠繚涓撲笟', - align: "center", - dataIndex: 'maintenanceSpecialtyName', - }, + // { + // title: '缁翠繚涓撲笟', + // align: "center", + // dataIndex: 'maintenanceSpecialtyName', + // }, { title: '缁翠慨淇濆吇瑙掕壊', align: "center", @@ -219,10 +220,10 @@ getAction(this.url.list, params).then((res) => { if (res.success) { this.dataSource = res.result.records || res.result; - for (let i = 0; i < this.dataSource.length; i++) { - let r = this.dataSource[i].upload; - r.src = this.getSrc(this.dataSource[i].upload); - } + // for (let i = 0; i < this.dataSource.length; i++) { + // let r = this.dataSource[i].upload; + // r.src = this.getSrc(this.dataSource[i].upload); + // } if (res.result.total) { this.ipagination.total = res.result.total; } else { -- Gitblit v1.9.3