| | |
| | | :data="list" |
| | | row-key="prop1" |
| | | stripe |
| | | :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}" |
| | | border |
| | | :cell-style="{padding:'7px 0','text-align':'center'}" |
| | | :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}" |
| | | style="width: 100%;" |
| | | > |
| | | <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="受伤地点" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredPart" label="受伤部位" width="80" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredDescribe" label="受伤经过描述" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="injuredDiacrisis" label="工伤诊断" width="60" /> |
| | | <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="是否住院" :formatter="hospitalizatioFlagFormat" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="settleStatus" label="案结状态" width="60" :formatter="settleStatusFormat" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="bedNumb" label="床号" width="60" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="reportTime" 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="compensated" label="已赔付医药费用" width="80" /> |
| | | <el-table-column show-overflow-tooltip type="index" width="55" label="序号" /> |
| | | <el-table-column show-overflow-tooltip prop="empNumb" label="编号" width="60" /> |
| | | <el-table-column show-overflow-tooltip prop="allDeptName" label="部门(护卫点)" width="300" /> |
| | | <el-table-column show-overflow-tooltip prop="jobName" label="岗位" width="60" /> |
| | | <el-table-column show-overflow-tooltip prop="empName" label="姓名" width="60" /> |
| | | <el-table-column show-overflow-tooltip prop="certificateNumb" label="身份证号码" width="120" /> |
| | | <el-table-column show-overflow-tooltip prop="injuredTime" label="受伤日期" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="injuredAddress" label="受伤地点" /> |
| | | <el-table-column show-overflow-tooltip prop="injuredPart" label="受伤部位" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="injuredDescribe" label="受伤经过描述" width="120" /> |
| | | <el-table-column show-overflow-tooltip prop="injuredDiacrisis" label="工伤诊断" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="hospitalName" label="就诊医院" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="treatmentName" label="就诊科室" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="hospitalizatioFlag" label="是否住院" :formatter="hospitalizatioFlagFormat" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="settleStatus" label="案结状态" width="80" :formatter="settleStatusFormat" /> |
| | | <el-table-column show-overflow-tooltip prop="bedNumb" label="床号" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="reportTime" label="报案时间" width="80" /> |
| | | <el-table-column show-overflow-tooltip prop="submitTime" label="递交资料时间" width="120" /> |
| | | <el-table-column show-overflow-tooltip prop="sbumitBy" label="递交人" width="70" /> |
| | | <el-table-column show-overflow-tooltip prop="expensesFee" label="医疗总费用" width="100" /> |
| | | <el-table-column show-overflow-tooltip prop="compensated" label="已赔付医药费用" width="120" /> |
| | | </el-table> |
| | | <pagination |
| | | v-show="total>0" |
| | |
| | | } |
| | | }, |
| | | mounted() { |
| | | this.getDicts('hospitalizatioFlag').then(response => { |
| | | this.hospitalizatioFlagOptions = response.data |
| | | }) |
| | | this.getDicts('settleStatus').then(response => { |
| | | this.settleStatusOptions = response.data |
| | | }) |
| | | setTimeout(() => { |
| | | this.getDicts('hospitalizatioFlag').then(response => { |
| | | this.hospitalizatioFlagOptions = response.data |
| | | }) |
| | | this.getDicts('settleStatus').then(response => { |
| | | this.settleStatusOptions = response.data |
| | | }) |
| | | }, 1000) |
| | | }, |
| | | methods: { |
| | | hospitalizatioFlagFormat(row, column) { |