no message

This commit is contained in:
zhujida 2020-12-23 16:11:51 +08:00
parent 6564d65255
commit 9ddc58199d
2 changed files with 3 additions and 1 deletions

View File

@ -324,8 +324,10 @@ export default {
this.handleGainAssessmentGroupList()
},
handleGainDeptPerson (dicArr, list) {
// eslint-disable-next-line
for (let index = 0;index < list.length;index++) {
const dept = list[index]
// eslint-disable-next-line
for (let index = 0;index < dept.staffDtos.length;index++) {
const person = dept.staffDtos[index]
dicArr[person.staffId.toString()] = 1

View File

@ -449,7 +449,7 @@ export default {
})
}
}
let rqPara = this.tableInfo.result ? Object.assign({}, this.obj) : Object.assign({}, this.obj, this.score)
let rqPara = this.tableInfo.result ? Object.assign({}, this.obj, { lastScore: null, scoreLevel: null }) : Object.assign({}, this.obj, this.score)
let res1 = await apiSaveDetail(rqPara)
if (res1.code !== 200) {
this.$message.error(res1.msg)