From a1dd32e5db9e352f63ffa0ba76fe3775e3103363 Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期五, 26 八月 2022 09:58:48 +0800 Subject: [PATCH] 图标 --- src/views/system/user/component/userDialog.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/views/system/user/component/userDialog.vue b/src/views/system/user/component/userDialog.vue index 243a2bf..2f63678 100644 --- a/src/views/system/user/component/userDialog.vue +++ b/src/views/system/user/component/userDialog.vue @@ -67,7 +67,7 @@ <template #footer> <span class="dialog-footer"> <el-button @click="isShowUserDialog = !isShowUserDialog" size="default">取 消</el-button> - <el-button type="primary" v-throttle @click="onSubmit" size="default">新 增</el-button> + <el-button type="primary" v-throttle @click="onSubmit" size="default">确 定</el-button> </span> </template> </el-dialog> @@ -94,6 +94,7 @@ phone: string; email: string; gender: number | null; + positionId: number | null; password: string; expireTime: string; status: number; @@ -120,6 +121,7 @@ identify: '', gender: null, // 性别 password: '', // 账户密码 + positionId: 1, // 岗位 expireTime: '', // 账户过期 status: 1 // 用户状态 }, @@ -145,6 +147,7 @@ phone: '', email: '', identify: '', + positionId: 1, gender: null, password: '', expireTime: '', -- Gitblit v1.9.2