[update] 企标制修订流程评分人评分节点,扣分理由改成非必填

This commit is contained in:
lideqin
2024-06-06 11:13:36 +08:00
parent fe4fd09753
commit 6e3ae6c957
@@ -31,7 +31,6 @@
</template>
<!-- 扣分理由 -->
<template slot="customTitleGroundsForDemerit">
<span class="table-header-required">*</span>
{{ $t('enterpriseStandardLibrary.reviewMeeting.groundsForDemerit') }}
</template>
@@ -389,10 +388,10 @@ export default {
break
}
console.log(this.dataSource[item].evaluateScore)
if (item % 3 === 0 && ((!this.dataSource[item].evaluateScore && this.dataSource[item].evaluateScore !== 0) || !this.dataSource[item].deductionScoreReason)) {
if (item % 3 === 0 && ((!this.dataSource[item].evaluateScore && this.dataSource[item].evaluateScore !== 0))) {
hasErr = true
break
} else if (item % 3 === 0 && (this.dataSource[item].evaluateScore || this.dataSource[item].evaluateScore === 0) && this.dataSource[item].deductionScoreReason) {
} else if (item % 3 === 0 && (this.dataSource[item].evaluateScore || this.dataSource[item].evaluateScore === 0)) {
// 是有评分和扣分理由的行
arr.push({
...this.dataSource[item],