From b7946d44c8ee9cd7ab69bbec3a1b84c09a8de7f0 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Fri, 28 Jun 2024 16:38:35 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E6=94=B9=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/user/index.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 2f540dc..03b4764 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -47,8 +47,8 @@ const searchConfig = ref([ } }, { - label: '用户账号', - prop: 'userName', + label: '用户名称', + prop: 'nickName', component: 'el-input', props: { placeholder: '请输入', @@ -56,8 +56,8 @@ const searchConfig = ref([ } }, { - label: '用户昵称', - prop: 'nickName', + label: '用户账号', + prop: 'userName', component: 'el-input', props: { placeholder: '请输入', @@ -91,12 +91,12 @@ const tableConfig = reactive({ columns: [ { prop: 'userName', - label: '用户名称', + label: '用户账号', align: 'center', }, { prop: 'nickName', - label: '用户昵称', + label: '用户名称', align: 'center', }, {