This commit is contained in:
qsh
2024-07-31 18:35:36 +08:00
parent 1e40357e51
commit 48689642d8
9 changed files with 287 additions and 129 deletions

View File

@@ -7,10 +7,10 @@
<el-col :span="20" :xs="24">
<!-- 搜索 -->
<el-form :model="queryParams" ref="queryFormRef" inline label-width="68px">
<el-form-item label="登录账号" prop="username">
<el-form-item label="姓名" prop="nickname">
<el-input
v-model="queryParams.username"
placeholder="请输入登录账号"
v-model="queryParams.nickname"
placeholder="请输入姓名"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
@@ -118,6 +118,7 @@ const queryParams = reactive({
pageNo: 1,
pageSize: 10,
username: undefined,
nickname: undefined,
mobile: undefined,
deptId: undefined
})