Explorar o código

fix(monthlyAssess): add missing semicolon and add score assignment

补全代码语句的分号,并添加分数字段的赋值逻辑,修复数据同步不完整的问题
huoyi hai 4 semanas
pai
achega
605d205182
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/views/performanceManage/monthlyAssess/index.vue

+ 2 - 1
src/views/performanceManage/monthlyAssess/index.vue

@@ -1380,7 +1380,8 @@ const saveIndicator = () => {
1380 1380
 
1381 1381
 
1382 1382
   list.forEach(detail => {
1383
-    detail.rewardPunishmentType = indicatorDialog.form.rewardPunishmentType
1383
+    detail.rewardPunishmentType = indicatorDialog.form.rewardPunishmentType;
1384
+    detail.score = indicatorDialog.form.score
1384 1385
   })
1385 1386
 
1386 1387
   if (indicatorDialog.mode === 'add') {