diff --git a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue index ca90fe50c..d832e8c07 100644 --- a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue +++ b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue @@ -769,7 +769,7 @@ export default { LoginUserType(val) { this.RoleType = [] if(this.currentPersonRole == '') { - this.currentPersonRole = val.length > 1 ? val[0].value : '' + this.currentPersonRole = val.length >= 1 ? val[0].value : '' } this.RoleType = val this.formInlineRoleSwitching.roleSwitchingCode = this.currentPersonRole @@ -951,6 +951,9 @@ export default { if(item.type == 'pull_more'){ item.dataValue = item.dataValue.join(',') } + if(item.type == 'text'){ + item.dataValue = item.dataValue.toString() + } }) } }