From c42d4c8b9f76552f371f96ced4db808402bea159 Mon Sep 17 00:00:00 2001
From: yz <yz_0812@outlook.com>
Date: 星期五, 26 二月 2021 02:23:06 +0800
Subject: [PATCH] 修改bug
---
src/views/user/Informationinput.vue | 20 +++++++++++++-------
1 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/src/views/user/Informationinput.vue b/src/views/user/Informationinput.vue
index b0ddbf1..75ccb23 100644
--- a/src/views/user/Informationinput.vue
+++ b/src/views/user/Informationinput.vue
@@ -305,7 +305,11 @@
<el-table-column prop="injuredDiacrisis" label="意外险诊断" width="180" />
<el-table-column prop="hospitalName" label="就诊医院" width="180" />
<el-table-column prop="treatmentName" label="就诊科室" width="180" />
- <el-table-column prop="hospitalizatioFlag" label="是否住院" width="180" />
+ <el-table-column prop="hospitalizatioFlag" label="是否住院" width="180">
+ <template slot-scope="scope">
+ {{ scope.row.hospitalizatioFlag ===1?'已住院':'未住院' }}
+ </template>
+ </el-table-column>
<el-table-column prop="bedNumb" label="床号" width="180" />
<el-table-column prop="reprotTime" label="报案时间" width="180" />
<el-table-column prop="submitTime" label="递交资料时间" width="180" />
@@ -337,7 +341,11 @@
<el-table-column prop="injuredDiacrisis" label="工伤诊断" width="180" />
<el-table-column prop="hospitalName" label="就诊医院" width="180" />
<el-table-column prop="treatmentName" label="就诊科室" width="180" />
- <el-table-column prop="hospitalizatioFlag" label="是否住院" width="180" />
+ <el-table-column prop="hospitalizatioFlag" label="是否住院" width="180">
+ <template slot-scope="scope">
+ {{ scope.row.hospitalizatioFlag ===1?'已住院':'未住院' }}
+ </template>
+ </el-table-column>
<el-table-column prop="bedNumb" label="床号" width="180" />
<el-table-column prop="reportTime" label="报案时间" width="180" />
<el-table-column prop="submitTime" label="递交资料时间" width="180" />
@@ -4463,7 +4471,7 @@
this.accidentCasesForm.injuredDescribe = row.injuredDescribe
this.accidentCasesForm.hospitalName = row.hospitalName
this.accidentCasesForm.treatmentName = row.treatmentName
- this.accidentCasesForm.hospitalizatioFlag = row.hospitalizatioFlag
+ this.accidentCasesForm.hospitalizatioFlag = row.hospitalizatioFlag + ''
this.accidentCasesForm.bedNumb = row.bedNumb
this.accidentCasesForm.reprotTime = row.reprotTime
this.accidentCasesForm.submitTime = row.submitTime
@@ -4601,7 +4609,7 @@
this.occupationalForm.injuredDescribe = row.injuredDescribe
this.occupationalForm.hospitalName = row.hospitalName
this.occupationalForm.treatmentName = row.treatmentName
- this.occupationalForm.hospitalizatioFlag = row.hospitalizatioFlag
+ this.occupationalForm.hospitalizatioFlag = row.hospitalizatioFlag + ''
this.occupationalForm.bedNumb = row.bedNumb
this.occupationalForm.reportTime = row.reportTime
this.occupationalForm.submitTime = row.submitTime
@@ -4628,7 +4636,6 @@
this.occupationalForm.delFlag = row.delFlag
this.occupationalForm.version = row.version
this.occupationalForm.remark = row.remark
-
this.dialogshowArr[10].show = true
},
selectLaborTrouble() {
@@ -4713,7 +4720,6 @@
},
editLaborTrouble(row) {
this.isAdd = false
-
this.laborTroubleForm.arbitrationId = row.arbitrationId
this.laborTroubleForm.empId = row.empId
this.laborTroubleForm.empNumb = row.empNumb
@@ -4729,7 +4735,7 @@
this.laborTroubleForm.arbitrationReason = row.arbitrationReason
this.laborTroubleForm.reporter = row.reporter
this.laborTroubleForm.arbitrationPay = row.arbitrationPay
- this.laborTroubleForm.arbitrationStatus = row.arbitrationStatus
+ this.laborTroubleForm.arbitrationStatus = row.arbitrationStatus + ''
this.laborTroubleForm.settleDate = row.settleDate
this.laborTroubleForm.createTime = row.createTime
this.laborTroubleForm.creator = row.creator
--
Gitblit v1.8.0