Commit 4825aa4b authored by 徐俊's avatar 徐俊

xujun

parent 8eae066f
......@@ -129,12 +129,12 @@ export default {
},
methods: {
addArrey () {//添加成员
this.dataList.push({ ...ProjResearch })
this.projectResearchList.push({ ...ProjResearch })
},
deleteArrey (item) {//移除成员
let index = this.dataList.indexOf(item)
let index = this.projectResearchList.indexOf(item)
if (index !== -1) {
this.dataList.splice(index, 1)
this.projectResearchList.splice(index, 1)
}
},
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment