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