| | |
| | | <el-table-column type="selection" width="55"></el-table-column> |
| | | <el-table-column label="用户名称" prop="userName" :show-overflow-tooltip="true" /> |
| | | <el-table-column label="用户昵称" prop="nickName" :show-overflow-tooltip="true" /> |
| | | <el-table-column label="科室" prop="deptName" :show-overflow-tooltip="true" /> |
| | | <el-table-column label="邮箱" prop="email" :show-overflow-tooltip="true" /> |
| | | <el-table-column label="手机" prop="phonenumber" :show-overflow-tooltip="true" /> |
| | | <el-table-column label="状态" align="center" prop="status"> |
| | |
| | | // 查询表数据 |
| | | getList() { |
| | | unallocatedUserList(this.queryParams).then(res => { |
| | | console.log(res,6969); |
| | | |
| | | this.userList = res.rows; |
| | | this.total = res.total; |
| | | }); |