组织架构
This commit is contained in:
parent
38d053ae65
commit
b621dcfc59
|
|
@ -130,9 +130,9 @@
|
||||||
<el-select v-model="form.attendanceUserId" placeholder="考勤员" clearable style="width: 100%;">
|
<el-select v-model="form.attendanceUserId" placeholder="考勤员" clearable style="width: 100%;">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in personOptions"
|
v-for="item in personOptions"
|
||||||
:key="item.userId"
|
:key="item.userIds"
|
||||||
:label="item.userName"
|
:label="item.userName"
|
||||||
:value="item.userId"
|
:value="item.userIds"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
@ -352,6 +352,7 @@ export default {
|
||||||
}
|
}
|
||||||
if(this.form.orgHeadUserId!=null){
|
if(this.form.orgHeadUserId!=null){
|
||||||
let arr = this.form.orgHeadUserId.split(',')
|
let arr = this.form.orgHeadUserId.split(',')
|
||||||
|
this.$set(this.form,"orgHeadUserIdList",arr)
|
||||||
}
|
}
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "修改部门";
|
this.title = "修改部门";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue