人员信息审核人脸
This commit is contained in:
parent
401a42b481
commit
cc32767f42
|
|
@ -14,6 +14,15 @@
|
|||
<treeselect v-model="queryParams.orgId" :options="deptOptions" :normalizer="normalizer" placeholder="选择部门" style="width: 240px"/>
|
||||
</el-form-item>
|
||||
|
||||
|
||||
|
||||
<el-form-item label="岗位名称" prop="postId">
|
||||
<el-select v-model="form.postId" filterable placeholder="选择岗位" clearable style="width: 100%;">
|
||||
<el-option v-for="dict in dict.type.post_list" :key="dict.value" :label="dict.label"
|
||||
:value="dict.value"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="是否参加考勤" prop="isAttend">
|
||||
<el-select v-model="queryParams.isAttend" placeholder="是否参加考勤" clearable style="width: 240px">
|
||||
<el-option v-for="dict in dictList" :key="dict.value" :label="dict.label"
|
||||
|
|
@ -308,6 +317,7 @@
|
|||
pageSize: 10,
|
||||
userName: undefined,
|
||||
orgId: undefined,
|
||||
postId: undefined,
|
||||
isAttend: undefined,
|
||||
},
|
||||
dictList:[
|
||||
|
|
@ -626,8 +636,8 @@
|
|||
submitForms: function() {
|
||||
this.$refs["forms"].validate(valid => {
|
||||
if (valid) {
|
||||
this.form.newFace = "";
|
||||
checkPersonAssignment(this.form).then(response => {
|
||||
this.form.newFace = "";
|
||||
if(this.form.reviewerStatus=="1"){
|
||||
this.$modal.msgSuccess("审核成功");
|
||||
}else if(this.form.reviewerStatus=="2"){
|
||||
|
|
|
|||
Loading…
Reference in New Issue