组织架构

This commit is contained in:
zzyuan 2024-10-17 16:14:06 +08:00
parent 38d053ae65
commit b621dcfc59
1 changed files with 3 additions and 2 deletions

View File

@ -130,9 +130,9 @@
<el-select v-model="form.attendanceUserId" placeholder="考勤员" clearable style="width: 100%;">
<el-option
v-for="item in personOptions"
:key="item.userId"
:key="item.userIds"
:label="item.userName"
:value="item.userId"
:value="item.userIds"
/>
</el-select>
</el-form-item>
@ -352,6 +352,7 @@ export default {
}
if(this.form.orgHeadUserId!=null){
let arr = this.form.orgHeadUserId.split(',')
this.$set(this.form,"orgHeadUserIdList",arr)
}
this.open = true;
this.title = "修改部门";