|
@@ -51,7 +51,42 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 列表 -->
|
|
<!-- 列表 -->
|
|
- <el-table :data="tableData" @sort-change="handleSortChange" style="width: 100%">
|
|
|
|
|
|
+ <!-- 指标三,发病4.5小时内脑梗死患者静脉溶栓率 -->
|
|
|
|
+ <el-table v-if="$route.query.ruleId == 62" :data="tableData" @sort-change="handleSortChange" style="width: 100%">
|
|
|
|
+ <el-table-column type="index" label="序号" align="center" width="80">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ scope.$index + 1 + (paginationData.currentPage - 1) * paginationData.pageSize }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="" label="住院号" width="160">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span class="link" @click="toPage(scope.row)">{{ scope.row.AAA28 }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="AAA01" label="患者姓名" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="zyzdmc" label="主要诊断名称" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="zyzbbh" label="主要诊断编号" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="" label="溶栓时间" width="160">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.rssj">{{ scope.row.rssj }}小时</span>
|
|
|
|
+ <span v-else>--</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="yzmc" label="医嘱名称" width="240"></el-table-column>
|
|
|
|
+ <el-table-column prop="XZJDSJ" label="首次护士执行时间" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="fbsj" label="发病时间" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="AAB01" label="入院日期" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="AAB01" label="出院日期" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="AAC11N" label="出院科室" width="160"></el-table-column>
|
|
|
|
+ <el-table-column prop="" label="状态" width="160">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-tag v-if="scope.row.numerator" type="success">正确</el-tag>
|
|
|
|
+ <el-tag v-else type="danger">错误</el-tag>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <!-- 其他指标 -->
|
|
|
|
+ <el-table v-else :data="tableData" @sort-change="handleSortChange" style="width: 100%">
|
|
<el-table-column type="index" label="序号" align="center" width="80">
|
|
<el-table-column type="index" label="序号" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.$index + 1 + (paginationData.currentPage - 1) * paginationData.pageSize }}</span>
|
|
<span>{{ scope.$index + 1 + (paginationData.currentPage - 1) * paginationData.pageSize }}</span>
|