From 6d933ec7f7369245e64f3f192a776f6c4fa50e31 Mon Sep 17 00:00:00 2001
From: luoyb <412940104@qq.com>
Date: 星期六, 06 三月 2021 21:18:37 +0800
Subject: [PATCH] fix(bug修复): 意外险案件编辑时的状态

---
 src/views/user/Informationinput.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/views/user/Informationinput.vue b/src/views/user/Informationinput.vue
index f31c346..c56174f 100644
--- a/src/views/user/Informationinput.vue
+++ b/src/views/user/Informationinput.vue
@@ -434,6 +434,7 @@
           <el-table-column show-overflow-tooltip prop="sbumitBy" label="递交人" width="60" />
           <el-table-column show-overflow-tooltip prop="expensesFee" label="医疗总费用" width="60" />
           <el-table-column show-overflow-tooltip prop="compensated" label="已赔付医药费用" width="60" />
+          <el-table-column show-overflow-tooltip prop="settleStatusName" label="是否结案" width="60" />
         </el-table>
         <el-table
           v-show="showArr[11].show"
@@ -2482,7 +2483,7 @@
         creator: '',
         modifyTime: '',
         modifier: '',
-        delFlag: '',
+        delFlag: '2',
         empStatus: 0,
         version: ''
       },
@@ -4991,7 +4992,7 @@
       this.accidentCasesForm.innsureFee = row.innsureFee
       this.accidentCasesForm.hrDoDate = row.hrDoDate
       this.accidentCasesForm.settleDate = row.settleDate
-      this.accidentCasesForm.settleStatus = row.settleStatus
+      this.accidentCasesForm.settleStatus = row.settleStatus + ''
       this.accidentCasesForm.remark = row.remark
       this.accidentCasesForm.createTime = row.createTime
       this.accidentCasesForm.creator = row.creator
@@ -5139,7 +5140,7 @@
       this.occupationalForm.companySubsidy = row.companySubsidy
       this.occupationalForm.companyCompensation = row.companyCompensation
       this.occupationalForm.jobSubsidy = row.jobSubsidy
-      this.occupationalForm.settleStatus = row.settleStatus
+      this.occupationalForm.settleStatus = row.settleStatus + ''
       this.occupationalForm.createTime = row.createTime
       this.occupationalForm.creator = row.creator
       this.occupationalForm.modifyTime = row.modifyTime

--
Gitblit v1.8.0