From 3e7d1c54e2d157c92d270facde45741ba507fd74 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期一, 12 五月 2025 16:29:45 +0800 Subject: [PATCH] 1、全局删除设备类型以及设备级别展示字段 2、设备详情弹窗删除有效轴数和最大轴数展示字段 3、限制设备日志工作曲线弹窗采集周期最小值为100 --- src/views/mdc/base/modules/efficiencyShiftReport/EfficiencyShiftList.vue | 69 ---------------------------------- 1 files changed, 1 insertions(+), 68 deletions(-) diff --git a/src/views/mdc/base/modules/efficiencyShiftReport/EfficiencyShiftList.vue b/src/views/mdc/base/modules/efficiencyShiftReport/EfficiencyShiftList.vue index 8d1302f..fdc245e 100644 --- a/src/views/mdc/base/modules/efficiencyShiftReport/EfficiencyShiftList.vue +++ b/src/views/mdc/base/modules/efficiencyShiftReport/EfficiencyShiftList.vue @@ -38,7 +38,7 @@ </a-select> </a-form-item> </a-col> - <a-col :md="4" :sm="4" :xs="4"> + <a-col :md="6" :sm="6" :xs="6"> <a-form-item label="鏃堕棿"> <a-range-picker @change="dateParamChange" :disabledDate="disabledDate" format="YYYYMMDD" v-model="dates" :allowClear="false"/> @@ -60,51 +60,6 @@ :allowClear="allowClearSu"> <a-select-option v-for="(em,index) in shiftSubList" :key="index" :value="em.value"> {{ em.label }} - </a-select-option> - </a-select> - </a-form-item> - </a-col> - <a-col :md="2" :sm="2"> - <a - @click="toggleSearchStatus=!toggleSearchStatus" - @selectstart="$event.preventDefault()" - style="display: inline-block;height: 32px;line-height: 32px" - > - {{ toggleSearchStatus ? '鏀惰捣' : '灞曞紑' }} - <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> - </a> - </a-col> - </a-row> - - <a-row :gutter="24" v-if="toggleSearchStatus"> - <a-col :md="5" :sm="5" :xs="5"> - <a-form-item label="璁惧绾у埆"> - <a-select - :value="queryParams.deviceLevel" - mode="multiple" - placeholder="璇烽�夋嫨璁惧绾у埆" - allow-clear - :maxTagCount="1" - @change="selectChange($event,'deviceLevel')" - > - <a-select-option v-for="(item,index) in device_level_list" :value="item.value" :key="index"> - {{item.label}} - </a-select-option> - </a-select> - </a-form-item> - </a-col> - <a-col :md="5" :sm="5" :xs="5"> - <a-form-item label="璁惧绉嶇被"> - <a-select - :value="queryParams.deviceCategory" - mode="multiple" - placeholder="璇烽�夋嫨璁惧绉嶇被" - allow-clear - :maxTagCount="1" - @change="selectChange($event,'deviceCategory')" - > - <a-select-option v-for="(item,index) in device_category_list" :value="item.value" :key="index"> - {{item.label}} </a-select-option> </a-select> </a-form-item> @@ -252,15 +207,11 @@ dates: [], equipmentTypeList: [], driveTypeList: [], - device_level_list: [], - device_category_list: [], identifying: [], queryParam: {}, queryParams: { equipmentType: [], driveType: [], - deviceLevel: [], - deviceCategory: [] }, queryParamEquip: {}, queryParamPeople: {}, @@ -298,8 +249,6 @@ this.loadData() this.queryGroup() this.getDriveTypeByApi() - this.initDictData('device_level') - this.initDictData('device_category') }, mounted() { window.addEventListener('resize', this.handleWindowResize) @@ -359,20 +308,6 @@ } }, methods: { - initDictData(dictCode) { - // //浼樺厛浠庣紦瀛樹腑璇诲彇瀛楀吀閰嶇疆 - if (getDictItemsFromCache(dictCode)) { - this[dictCode + '_list'] = getDictItemsFromCache(dictCode) - return - } - //鏍规嵁瀛楀吀Code, 鍒濆鍖栧瓧鍏告暟缁� - ajaxGetDictItems(dictCode, null).then((res) => { - if (res.success) { - this[dictCode + '_list'] = res.result - return - } - }) - }, selectChange(value, key) { this.queryParams[key] = value }, @@ -583,8 +518,6 @@ this.queryParams = { equipmentType: [], driveType: [], - deviceLevel: [], - deviceCategory: [] } this.loadData() // this.onClearSelected() -- Gitblit v1.9.3