| | |
| | | v-show="showSearch" |
| | | label-width="80px" |
| | | > |
| | | |
| | | <el-form-item label="账号类别" prop="usertype"> |
| | | <el-select |
| | | v-model="queryParams.usertype" |
| | | placeholder="请选择账号类别" |
| | | clearable |
| | | size="small" |
| | | > |
| | | <el-option |
| | | v-for="dict in dict.type.sys_UserType" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="账号编号" prop="userno"> |
| | | <el-input |
| | | v-model="queryParams.userno" |
| | |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="账号类别" prop="usertype"> |
| | | <el-select |
| | | v-model="queryParams.usertype" |
| | | placeholder="请选择账号类别" |
| | | <el-form-item label="所在单位" prop="unitname"> |
| | | <el-input |
| | | v-model="queryParams.unitname" |
| | | placeholder="请输入所在单位" |
| | | clearable |
| | | size="small" |
| | | > |
| | | <el-option |
| | | v-for="dict in dict.type.sys_UserType" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button |
| | |
| | | /> </template |
| | | ></el-table-column> |
| | | <el-table-column |
| | | label="单位名称" |
| | | label="所在单位" |
| | | width="250" |
| | | align="center" |
| | | prop="unitname" |
| | |
| | | |
| | | /** 查询单位、人员账号列表 */ |
| | | getList() { |
| | | /* |
| | | if ( |
| | | this.queryParams.username === null || |
| | | this.queryParams.username.replace(/\s/g, "") == "" |
| | |
| | | ); |
| | | return; |
| | | } |
| | | */ |
| | | |
| | | // this.loading = true; |
| | | listExternalperson(this.queryParams).then(response => { |
| | |
| | | }, |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | console.log("handleQuery", this.queryParams); |
| | | /* |
| | | if ( |
| | | this.queryParams.username === null || |
| | | this.queryParams.username.replace(/\s/g, "") == "" |
| | |
| | | ); |
| | | return; |
| | | } |
| | | */ |
| | | |
| | | this.queryParams.pageNum = 1; |
| | | this.getList(); |