From d16bbfc71840c7f99cc7631bc03161cc94d8ad87 Mon Sep 17 00:00:00 2001 From: renpy Date: Fri, 4 Aug 2023 17:45:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=97=E5=85=B8=E6=95=B0=E6=8D=AEsource?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=A2=9E=E5=8A=A0=E4=B8=8B=E6=8B=89icon=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=84=E5=88=99=E7=9A=84=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysisMonitor/alarmRules/index.vue | 15 +++++++++++---- .../abnormalAlarm/components/dicSelect.vue | 18 +++++++++++++++++- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/src/views/abnormalAlarm/analysisMonitor/alarmRules/index.vue b/src/views/abnormalAlarm/analysisMonitor/alarmRules/index.vue index cb76d60..6aad4f0 100644 --- a/src/views/abnormalAlarm/analysisMonitor/alarmRules/index.vue +++ b/src/views/abnormalAlarm/analysisMonitor/alarmRules/index.vue @@ -25,7 +25,7 @@ - + Sources { if (res.success) { - console.log(res.result.sourceChecked.join(',')); this.isAdd = false this.visible = true this.$nextTick(() => { @@ -516,7 +514,6 @@ export default { remark:values.remark, stations:values.station.join(","), source: values.source, - enabled: 1, nuclides:values.nuclide.join(","), contactGroup:values.contactGroup, spectralQualifier: values.qualifier, @@ -762,4 +759,14 @@ export default { transform: translateX(-50%); } } +.ant-select { + .ant-select-arrow-icon { + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + } + &-open { + .ant-select-arrow-icon { + transform: rotate(180deg); + } + } +} \ No newline at end of file diff --git a/src/views/abnormalAlarm/components/dicSelect.vue b/src/views/abnormalAlarm/components/dicSelect.vue index 4007ce8..4076993 100644 --- a/src/views/abnormalAlarm/components/dicSelect.vue +++ b/src/views/abnormalAlarm/components/dicSelect.vue @@ -21,7 +21,10 @@ :getPopupContainer="getParentContainer" optionFilterProp="children" :filterOption="filterOption" - allowClear> + allowClear + show-arrow + > + + + \ No newline at end of file