选择审核人

This commit is contained in:
shijingjing
2023-03-03 16:05:45 +08:00
parent 28687d9a01
commit c2dab52fa1
2 changed files with 13 additions and 6 deletions

View File

@@ -643,11 +643,15 @@ export default {
// 时间
this.startTime = uni.getStorageSync('startTime')
this.endTime = uni.getStorageSync('endTime')
if(this.enableExamine==1) {
this.form.examines = uni.setStorageSync('selectDeptUser')
}
uni.$on("pagePicker:custom", ()=> {
this.form.examines = uni.getStorageSync('selectDeptUser').map(e=> {
return {
...e,
examineUserId: e.id,
examineUserName: e.name
}
})
})
}
}
</script>