From 94ccb45f8ce401240e66628358bd43b01279af5b Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Mon, 22 Jul 2024 18:14:29 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E9=85=8D=E7=BD=AE=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=8A=BD=E5=B1=89=E5=B1=95=E5=BC=80=E7=9A=84?= =?UTF-8?q?title=E5=88=9D=E5=A7=8B=E4=B8=BA=E7=A9=BA=E9=81=BF=E5=85=8D?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../configParamTreeTable/components/OpeateDrawer.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/configManage/configParamTreeTable/components/OpeateDrawer.vue b/src/views/configManage/configParamTreeTable/components/OpeateDrawer.vue index 795c0fcb..a4fa4b6c 100644 --- a/src/views/configManage/configParamTreeTable/components/OpeateDrawer.vue +++ b/src/views/configManage/configParamTreeTable/components/OpeateDrawer.vue @@ -67,7 +67,7 @@ type StateType = { let state: StateType = reactive({ visibleByList: false, visibleByDiff: false, - title: '学生操作参数名称', + title: '操作参数名称-学生账号', loading: false, data: [], dataDiff: {}, @@ -183,13 +183,15 @@ watch( val => { if (val) { if (props.neType && props.paramName) { + state.title = ''; + state.visibleByList = true; + // 根据条件查询数据 queryParams.neType = props.neType; queryParams.paramName = props.paramName; if (props.student) { queryParams.student = props.student; } fnGetList(); - state.visibleByList = true; } } }