|
@@ -484,8 +484,11 @@
|
|
|
this.recordList[0].seeResult = res.checkResultRequestList[0].checkResultDescribe;
|
|
|
this.checkedSelectResultListIds = tempIds;
|
|
|
this.checkedSelectResultList = res.checkResultRequestList[0].checkResultDescribe.split(
|
|
|
- ',');
|
|
|
- this.checkedSelectResultListData = tempResult;
|
|
|
+ ',');
|
|
|
+
|
|
|
+ this.checkedSelectResultListData = tempResult;
|
|
|
+
|
|
|
+ console.log({tempResult});
|
|
|
// this.selectedScore = tempScore;
|
|
|
|
|
|
}
|
|
@@ -620,7 +623,7 @@
|
|
|
let params = {
|
|
|
id: this.data.id,
|
|
|
checkResult: this.data.checkResult,
|
|
|
- checkResultRequestList: [],
|
|
|
+ checkResultRequestList:[],
|
|
|
checkItemScore: this.checkItemScore,
|
|
|
value: this.checkItemValue,
|
|
|
situationType: this.situationType,
|
|
@@ -628,8 +631,9 @@
|
|
|
score: this.currentScore,
|
|
|
deductPoint: this.deductPoint,
|
|
|
};
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+ console.log({params});
|
|
|
+
|
|
|
if (this.data.checkModelName == "访谈") {
|
|
|
let list = [];
|
|
|
for (let i = 0; i < this.talkList.length; i++) {
|
|
@@ -651,23 +655,14 @@
|
|
|
}
|
|
|
params.checkResultRequestList = list;
|
|
|
} else {
|
|
|
- let list = [];
|
|
|
- let path = "";
|
|
|
- for (let j = 0; j < this.recordList[0].filePath.length; j++) {
|
|
|
- if (j == 0) {
|
|
|
- path += `${this.recordList[0].filePath[j]}`;
|
|
|
- } else {
|
|
|
- path += `,${this.recordList[0].filePath[j]}`;
|
|
|
- }
|
|
|
- }
|
|
|
+
|
|
|
let item = {
|
|
|
checkResultId: 1,
|
|
|
checkResultDescribe: this.recordList[0].seeResult,
|
|
|
- checkResultUrl: path,
|
|
|
+ checkResultUrl: this.filePath.join(','),
|
|
|
};
|
|
|
|
|
|
- list.push(item);
|
|
|
- params.checkResultRequestList = list;
|
|
|
+ params.checkResultRequestList = [item];
|
|
|
}
|
|
|
const checkConfiglist = JSON.parse(JSON.stringify(this.checkConfiglist));
|
|
|
|