|
@@ -7,7 +7,7 @@
|
|
|
v-show="showSearch"
|
|
|
label-width="68px"
|
|
|
>
|
|
|
- <el-form-item label="" prop="unitId">
|
|
|
+ <!-- <el-form-item label="" prop="unitId">
|
|
|
<el-input
|
|
|
v-model="queryParams.unitId"
|
|
|
placeholder="请输入单位"
|
|
@@ -15,17 +15,17 @@
|
|
|
size="small"
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item> -->
|
|
|
<el-form-item label="" prop="peopleId">
|
|
|
<el-input
|
|
|
v-model="queryParams.peopleId"
|
|
|
placeholder="请输入姓名"
|
|
|
clearable
|
|
|
size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
+ @input="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="" prop="job">
|
|
|
+ <!-- <el-form-item label="" prop="job">
|
|
|
<el-input
|
|
|
v-model="queryParams.job"
|
|
|
placeholder="请输入工作岗位"
|
|
@@ -33,8 +33,8 @@
|
|
|
size="small"
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="" prop="classId">
|
|
|
+ </el-form-item> -->
|
|
|
+ <!-- <el-form-item label="" prop="classId">
|
|
|
<el-input
|
|
|
v-model="queryParams.classId"
|
|
|
placeholder="请输入人员类别"
|
|
@@ -42,11 +42,11 @@
|
|
|
size="small"
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item> -->
|
|
|
<el-form-item>
|
|
|
- <el-button type="primary" size="btn" @click="handleQuery"
|
|
|
+ <!-- <el-button type="primary" size="btn" @click="handleQuery"
|
|
|
>搜索</el-button
|
|
|
- >
|
|
|
+ > -->
|
|
|
<el-button size="btr" @click="resetQuery">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -112,6 +112,13 @@
|
|
|
:header-cell-style="{ background: '#003C69', color: 'white' }"
|
|
|
>
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="序号" align="center">
|
|
|
+ <template scope="scope">
|
|
|
+ <span>{{
|
|
|
+ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
|
|
|
+ }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="人员类别" align="center" prop="id" />
|
|
|
<el-table-column label="单位" align="center" prop="unitName" />
|
|
|
<el-table-column label="姓名" align="center" prop="peopleName" />
|
|
@@ -323,7 +330,7 @@ export default {
|
|
|
const id = row.id || this.ids;
|
|
|
getExamine(id).then((response) => {
|
|
|
this.form = response.data;
|
|
|
- this.getRenYuan(this.form.unitId)
|
|
|
+ this.getRenYuan(this.form.unitId);
|
|
|
this.open = true;
|
|
|
this.title = "修改人员体检信息";
|
|
|
});
|
|
@@ -332,7 +339,7 @@ export default {
|
|
|
shuxing(data) {
|
|
|
console.log(data);
|
|
|
this.form.unitId = data.id;
|
|
|
- this.form.unitName=data.label
|
|
|
+ this.form.unitName = data.label;
|
|
|
this.getRenYuan(this.form.unitId);
|
|
|
},
|
|
|
// 获取人员
|