|
@@ -2492,7 +2492,11 @@ export default {
|
|
|
reportAuditUserid: that.depData.reportAuditUserid,
|
|
|
}
|
|
|
if(that.depData.otherManagerIds) {
|
|
|
- this.$set(that.depForm, 'otherManagerIds', that.depData.otherManagerIds)
|
|
|
+ if(Array.isArray(that.depData.otherManagerIds)) {
|
|
|
+ this.$set(that.depForm, 'otherManagerIds', that.depData.otherManagerIds)
|
|
|
+ } else {
|
|
|
+ this.$set(that.depForm, 'otherManagerIds', that.depData.otherManagerIds.split(','))
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$set(that.depForm, 'otherManagerIds', [])
|
|
|
|