标准评估产品线下的项目置空

This commit is contained in:
宋伟佳
2021-12-20 11:20:01 +08:00
parent d2e99dacb8
commit f135c42b35
2 changed files with 9 additions and 3 deletions
@@ -1020,7 +1020,10 @@ export default {
}, {
_this: this
}, res => {
this.productData = res.data.records;
this.productData = res.data.records.map(item => {
item.sarStandProjectLibraries = []
return item
})
this.totalNo = res.data.total;
}, e => {
@@ -861,7 +861,7 @@ export default {
if(this.satisfyFlag){
this.isSubmit = true;
this.listForm.commentText = this.commentText;
var json = Object.assign(this.listForm, this.roleForm);
let json = Object.assign(this.listForm, this.roleForm);
localStorage.setItem('projectList', JSON.stringify(this.dataList))
this.$refs["listForm"].validate((valid) => {
if (valid) {
@@ -1019,7 +1019,10 @@ export default {
}, {
_this: this
}, res => {
this.productData = res.data.records;
this.productData = res.data.records.map(item => {
item.sarStandProjectLibraries = []
return item
})
this.totalNo = res.data.total;
}, e => {