From ebd3033a671d2f7f499bf544ceb2a2080fb06334 Mon Sep 17 00:00:00 2001
From: 孔祥富 <kongxf@daryun.com>
Date: 星期二, 09 三月 2021 22:04:56 +0800
Subject: [PATCH] ..

---
 src/views/user/archivesEdit.vue |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/views/user/archivesEdit.vue b/src/views/user/archivesEdit.vue
index 2e11fa6..6f44f8d 100644
--- a/src/views/user/archivesEdit.vue
+++ b/src/views/user/archivesEdit.vue
@@ -1040,6 +1040,7 @@
                 <el-table-column show-overflow-tooltip="true" prop="sbumitBy" label="递交人" width="100" />
                 <el-table-column show-overflow-tooltip="true" prop="expensesFee" label="医疗总费用" width="100" />
                 <el-table-column show-overflow-tooltip="true" prop="innsureFee" label="保险赔付费用" width="120" />
+                <el-table-column show-overflow-tooltip="true" prop="settleStatus" label="是否结案" width="120" :formatter="settleStatusFormat" />
               </el-table>
               <pagination
                 v-show="accidentCasesDatatotal>0"
@@ -1095,6 +1096,7 @@
                 <el-table-column show-overflow-tooltip="true" prop="sbumitBy" label="递交人" width="80" />
                 <el-table-column show-overflow-tooltip="true" prop="expensesFee" label="医疗总费用" width="100" />
                 <el-table-column show-overflow-tooltip="true" prop="compensated" label="已赔付医药费用" width="120" />
+                <el-table-column show-overflow-tooltip="true" prop="settleStatus" label="是否结案" width="120" :formatter="settleStatusFormat" />
               </el-table>
               <pagination
                 v-show="occupationalDatatotal>0"
@@ -1142,7 +1144,7 @@
                 <el-table-column show-overflow-tooltip="true" prop="reporter" label="报备人" width="100" />
                 <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
                 <el-table-column show-overflow-tooltip="true" prop="arbitrationPay" label="仲裁赔付(元)" width="180" />
-                <el-table-column show-overflow-tooltip="true" prop="arbitrationStatus" label="状态" width="100" :formatter="arbitrationStatusFormat" />
+                <el-table-column show-overflow-tooltip="true" prop="arbitrationStatus" label="是否结案" width="100" :formatter="arbitrationStatusFormat" />
                 <el-table-column show-overflow-tooltip="true" prop="settleDate" label="案结日期" width="100" />
               </el-table>
               <pagination
@@ -2507,7 +2509,7 @@
               <el-form-item label="汇报人" prop="reporter">
                 <el-input v-model="laborTroubleForm.reporter" />
               </el-form-item>
-              <el-form-item label="状态" prop="arbitrationStatus">
+              <el-form-item label="是否结案" prop="arbitrationStatus">
                 <el-select v-model="laborTroubleForm.arbitrationStatus" placeholder="">
                   <el-option
                     v-for="dict in settleStatusOptions"
@@ -3741,6 +3743,9 @@
     arbitrationStatusFormat(row, column) {
       return this.selectDictLabel(this.settleStatusOptions, row.arbitrationStatus)
     },
+    settleStatusFormat(row, column) {
+      return this.selectDictLabel(this.settleStatusOptions, row.settleStatus)
+    },
     beforeAvatarUpload(file) {
       this.fileDate.labelid = this.activities[this.beforeIndex].id
       const isLt50M = file.size / 1024 / 1024 < 50

--
Gitblit v1.8.0