From 4ef0342708910d02453fdcfae2148eadbf6d7004 Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期三, 05 六月 2024 11:34:21 +0800 Subject: [PATCH] 1、设备综合效率分析页面表格列属性ellipsis开启后内容若超出盒子宽度则出现与表头错位现象,而无法实现ellipsis开启后内容超出单元格则省略功能,现采取增加列宽度方式且关闭ellipsis属性功能方法解决问题 2、设备综合效率分析页面调整计算表格垂直滚动条方法以试图解决项目服务器上无法正常显示水平滚动条问题 --- src/views/eam/modules/equipmentCalibrationOrder/EquipmentCalibrationOrderReportList.vue | 46 +++++++++++++++++++++++----------------------- 1 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/views/eam/modules/equipmentCalibrationOrder/EquipmentCalibrationOrderReportList.vue b/src/views/eam/modules/equipmentCalibrationOrder/EquipmentCalibrationOrderReportList.vue index 35295a1..6b9272a 100644 --- a/src/views/eam/modules/equipmentCalibrationOrder/EquipmentCalibrationOrderReportList.vue +++ b/src/views/eam/modules/equipmentCalibrationOrder/EquipmentCalibrationOrderReportList.vue @@ -101,7 +101,7 @@ data() { return { description: '妫�瀹氭姤鍛�', - disableMixinCreated:true, + disableMixinCreated: true, columns: [ { title: '#', @@ -135,11 +135,11 @@ dataIndex: 'size', scopedSlots: { customRender: 'size' }, }, - { - title: '鍒ゅ畾缁撴灉', - align: 'center', - dataIndex: 'judgmentResultName' - }, + // { + // title: '鍒ゅ畾缁撴灉', + // align: 'center', + // dataIndex: 'judgmentResultName' + // }, { title: '鎿嶄綔', align: 'center', @@ -156,27 +156,27 @@ }, } }, - props:{ - calibrationOrderId:{ - type:String, - default:'', - required:false + props: { + calibrationOrderId: { + type: String, + default: '', + required: false } }, - watch:{ - calibrationOrderId:{ - immediate: true, - handler(val) { - if(!this.calibrationOrderId){ - this.clearList() - }else{ - this.queryParam['calibrationOrderId'] = val; - this.queryParam['delFlag'] = 0; - this.loadData(1); - } + watch: { + calibrationOrderId: { + immediate: true, + handler(val) { + if (!this.calibrationOrderId) { + // this.clearList() + } else { + this.queryParam['calibrationOrderId'] = val; + this.queryParam['delFlag'] = 0; + this.loadData(1); } } - }, + } + }, // mounted() { // this.$bus.$on('equipmentSelectionRows', (data) => { // this.equipmentSelectionRows = data -- Gitblit v1.9.3