|
@@ -32,27 +32,20 @@
|
|
<span class="kong"></span>
|
|
<span class="kong"></span>
|
|
<el-button type="primary" @click="funQuery">查询</el-button>
|
|
<el-button type="primary" @click="funQuery">查询</el-button>
|
|
</div>
|
|
</div>
|
|
- <el-button @click="toBack" style="position: absolute; right: 35px;">返回</el-button>
|
|
|
|
</div>
|
|
</div>
|
|
<el-table :data="tableData" style="width: 100%">
|
|
<el-table :data="tableData" style="width: 100%">
|
|
- <el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
- <el-table-column prop="AAC11N" label="出院科室"></el-table-column>
|
|
|
|
- <el-table-column prop="AAA28" label="病案号">
|
|
|
|
|
|
+ <el-table-column type="index" label="序号" width="80"></el-table-column>
|
|
|
|
+ <el-table-column prop="AAC11N" label="出院科室" width="200"></el-table-column>
|
|
|
|
+ <el-table-column prop="AAA28" label="病案号" width="160">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span class="blue" @click="funGoto(scope.row.MED_REC_ID)">
|
|
<span class="blue" @click="funGoto(scope.row.MED_REC_ID)">
|
|
{{ scope.row.AAA28 }}
|
|
{{ scope.row.AAA28 }}
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="AAC01" label="出院时间"></el-table-column>
|
|
|
|
- <el-table-column prop="AAA01" label="患者姓名"></el-table-column>
|
|
|
|
- <el-table-column prop="" label="缺陷描述" show-overflow-tooltip>
|
|
|
|
- <template>
|
|
|
|
- <span>
|
|
|
|
- {{ $route.query.desc }}
|
|
|
|
- </span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="AAC01" label="出院时间" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="AAA01" label="患者姓名" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="rule_notice" label="缺陷问题"></el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<!-- 分页控制 -->
|
|
<!-- 分页控制 -->
|
|
<mPagination v-if="tableData && tableData.length !== 0" :data="paginationData" @pageChangeEvent="pageHasChanged"></mPagination>
|
|
<mPagination v-if="tableData && tableData.length !== 0" :data="paginationData" @pageChangeEvent="pageHasChanged"></mPagination>
|