Sfoglia il codice sorgente

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

补全代码语句的分号,并添加分数字段的赋值逻辑,修复数据同步不完整的问题
huoyi 4 settimane fa
parent
commit
605d205182
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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
   list.forEach(detail => {
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
   if (indicatorDialog.mode === 'add') {
1387
   if (indicatorDialog.mode === 'add') {