| | |
| | | <el-dialog |
| | | :title="title" |
| | | top="50px" |
| | | width="80%" |
| | | :close-on-click-modal="false" |
| | | :close-on-press-escape="false" |
| | | :visible.sync="isVisible" |
| | | :before-close="beforeClose" |
| | | > |
| | | <div class="app-container"> |
| | | <div class="filter-container" style="margin-left: -340px;"> |
| | |
| | | ref="multipleTable" |
| | | :data="list" |
| | | row-key="prop1" |
| | | width="50%" |
| | | stripe |
| | | :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}" |
| | | style="width: 100%;" |
| | | > |
| | | <el-table-column type="selection" :reserve-selection="false" width="55" /> |
| | | <el-table-column prop="empNumb" label="员工编号" width="180" /> |
| | | <el-table-column prop="deptName" label="护卫点" width="180" /> |
| | | <el-table-column prop="jobName" label="岗位名称" width="180" /> |
| | | <el-table-column prop="empName" label="姓名" width="180" /> |
| | | <el-table-column prop="certificateNumb" label="身份证号码" width="180" /> |
| | | <el-table-column prop="injuredTime" label="受伤日期" width="180" /> |
| | | <el-table-column prop="injuredAddress" label="受伤地点" width="180" /> |
| | | <el-table-column prop="injuredPart" label="受伤部位" width="180" /> |
| | | <el-table-column prop="injuredDescribe" label="受伤经过描述" width="180" /> |
| | | <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="bedNumb" label="床号" width="180" /> |
| | | <el-table-column prop="reprotTime" label="报案时间" width="180" /> |
| | | <el-table-column prop="submitTime" label="递交资料时间" width="180" /> |
| | | <el-table-column prop="sbumitBy" label="递交人" width="180" /> |
| | | <el-table-column prop="expensesFee" label="医疗总费用" width="180" /> |
| | | <el-table-column prop="innsureFee" label="保险赔付费用" width="180" /> |
| | | <el-table-column show-overflow-tooltip="true" type="selection" :reserve-selection="false" width="55" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="empNumb" label="员工编号" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="deptName" label="护卫点" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="jobName" label="岗位名称" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="empName" label="姓名" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="certificateNumb" label="身份证号码" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredTime" label="受伤日期" width="80" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredAddress" label="受伤地点" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredPart" label="受伤部位" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredDescribe" label="受伤经过描述" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredDiacrisis" label="意外险诊断" width="80" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="hospitalName" label="就诊医院" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="treatmentName" label="就诊科室" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="hospitalizatioFlag" label="是否住院" width="50"> |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.hospitalizatioFlag === 1 ? '是': '' }} |
| | | {{ scope.row.hospitalizatioFlag === 2 ? '否': '' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column show-overflow-tooltip="true" prop="settleStatus" label="案结状态" width="60"> |
| | | <template slot-scope="{row}"> |
| | | {{ transArbitrationStatus(row.settleStatus) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column show-overflow-tooltip="true" prop="bedNumb" label="床号" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="reprotTime" label="报案时间" width="80" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="submitTime" label="递交资料时间" width="80" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="sbumitBy" label="递交人" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="expensesFee" label="医疗总费用" width="80" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="innsureFee" label="保险赔付费用" width="80" /> |
| | | </el-table> |
| | | <pagination |
| | | v-show="total>0" |
| | |
| | | } |
| | | }, |
| | | methods: { |
| | | beforeClose(done) { |
| | | this.$emit('cancleChooseUser') |
| | | }, |
| | | search() { |
| | | this.fetch({ |
| | | ...this.queryParams |