123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <div class="rectificationUserPage">
- <el-form :model="queryParams" class="form-box" ref="queryForm" :inline="true">
- <el-form-item label="关键字" prop="searchValue" label-width="80px">
- <el-input
- maxLength="30"
- v-model="queryParams.searchValue"
- placeholder="实验室/房间号/姓名"
- clearable
- style="width: 200px"/>
- </el-form-item>
- <el-form-item label="学院" prop="deptId" label-width="50px">
- <el-select v-model="queryParams.deptId" clearable placeholder="请选择学院">
- <el-option
- v-for="item in deptSelectList"
- :key="item.deptId"
- :label="item.deptName"
- :value="item.deptId">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <p class="inquire-button-one" @click="handleQuery" style="margin-right:10px;">查询</p>
- <p class="reset-button-one" @click="resetQuery">重置</p>
- </el-form-item>
- <el-form-item style="float: right;">
- <el-col :span="1.5">
- <p class="inquire-button-one"
- style="width:100px;"
- @click="configButton(1)"
- >检查者配置</p>
- </el-col>
- </el-form-item>
- </el-form>
- <el-table border :data="tableList" ref="multipleTable">
- <el-table-column label="序号" align="center" type="index" width="60" />
- <el-table-column label="实验室" align="center" prop="subName" show-overflow-tooltip/>
- <el-table-column label="学院" align="center" prop="deptName" show-overflow-tooltip width="300"/>
- <el-table-column label="检查者" align="center" prop="nickNames" show-overflow-tooltip width="300"/>
- <el-table-column label="操作人" align="center" prop="createName" show-overflow-tooltip width="200"/>
- <el-table-column label="操作时间" align="center" prop="createTime" show-overflow-tooltip width="300"/>
- </el-table>
- <pagination :page-sizes="[20, 30, 40, 50]"
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <configDialog v-if="configDialogType" :configDialogData="configDialogData"></configDialog>
- </div>
- </template>
- <script>
- import { listDepartments } from "@/api/system/dept";
- import { checkStaffList } from '@/api/safetyCheck/index'
- import configDialog from './configDialog.vue'
- export default {
- name: 'rectificationUserPage',
- components: {
- configDialog
- },
- data(){
- return{
- // 组件数据
- configDialogType:false,
- configDialogData:{
- configType:2,//1.检查人员配置 2.整改人员配置
- },
- //查询数据
- deptSelectList:[],
- queryParams:{
- pageNum:1,
- pageSize:20,
- searchValue:"",
- deptId:""
- },
- tableList:[{}],
- total:0,
- }
- },
- created(){
- },
- mounted(){
- this.listDepartments();
- this.getList();
- },
- methods:{
- //配置按钮
- configButton(type){
- if(type == 1){
- this.$set(this,'configDialogType',true);
- }else if(type == 2){
- this.$set(this,'configDialogType',false);
- }
- },
- //获取数据列表
- getList(){
- checkStaffList(this.queryParamsData).then(response => {
- this.total = response.total;
- this.tableList = response.rows;
- });
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.$set(this.queryParams,'pageNum',1);
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.$set(this,'queryParams',{
- pageNum:1,
- pageSize:20,
- searchValue:"",
- deptId:""
- });
- this.handleQuery();
- },
- //获取学院列表
- listDepartments(){
- listDepartments().then(response => {
- this.deptSelectList = response.data;
- });
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .rectificationUserPage{
- padding:20px;
- flex:1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- </style>
|