修改认证参数列表
This commit is contained in:
@@ -323,14 +323,15 @@
|
||||
},
|
||||
editData(edit) {
|
||||
// 编辑一行的数据
|
||||
if (edit.projectVersion) {
|
||||
edit.projectVersion = edit.projectVersion.split(',')
|
||||
let query = JSON.parse(JSON.stringify(edit))
|
||||
if (query.projectVersion) {
|
||||
query.projectVersion = query.projectVersion.split(',')
|
||||
}else{
|
||||
edit.projectVersion = []
|
||||
query.projectVersion = []
|
||||
}
|
||||
this.row = edit
|
||||
this.formData = { ...edit }
|
||||
this.selectedRowKeys = edit.paramsTemplateId.split(',')
|
||||
this.row = query
|
||||
this.formData = { ...query }
|
||||
this.selectedRowKeys = query.paramsTemplateId.split(',')
|
||||
},
|
||||
//新增
|
||||
handleSubmit() {
|
||||
|
||||
Reference in New Issue
Block a user