|
@@ -4,16 +4,17 @@
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
<el-table
|
|
<el-table
|
|
v-loading="loading"
|
|
v-loading="loading"
|
|
- :data="data"
|
|
|
|
|
|
+ :data="tableData"
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
>
|
|
>
|
|
<el-table-column type="index" label="序号" width="80" />
|
|
<el-table-column type="index" label="序号" width="80" />
|
|
- <el-table-column
|
|
|
|
- prop="status"
|
|
|
|
- label="申诉状态"
|
|
|
|
- width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- />
|
|
|
|
|
|
+ <el-table-column>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.status == 0">待审核</span>
|
|
|
|
+ <span v-if="scope.row.status == 1">通过</span>
|
|
|
|
+ <span v-if="scope.row.status == 2">不通过</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
prop="defect_content"
|
|
prop="defect_content"
|
|
label="缺槬陷问题描述"
|
|
label="缺槬陷问题描述"
|
|
@@ -26,7 +27,11 @@
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span>{{ scope.row.levels == 1?'必改':'建议' }}</span>
|
|
|
|
|
|
+ <span>
|
|
|
|
+ <el-tag style="max-width: 80px" :type="scope.row.levels === 1 ? 'danger' : ''">
|
|
|
|
+ {{ scope.row.levels == 1?'必改':'建议' }}
|
|
|
|
+ </el-tag>
|
|
|
|
+ </span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
@@ -41,13 +46,13 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="AAB01_start_time"
|
|
|
|
|
|
+ prop="AAB01"
|
|
label="入院时间"
|
|
label="入院时间"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
|
|
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="appeal_docter"
|
|
|
|
|
|
+ prop="appeal_document"
|
|
label="申诉科室"
|
|
label="申诉科室"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
@@ -57,7 +62,7 @@
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="AAB01_START"
|
|
|
|
|
|
+ prop="appeal_time"
|
|
label="申诉时间"
|
|
label="申诉时间"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
@@ -68,7 +73,7 @@
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="examine_start_time"
|
|
|
|
|
|
+ prop="examine_time"
|
|
label="审核时间"
|
|
label="审核时间"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|