|
@@ -71,9 +71,21 @@
|
|
<div class="conter" style="border: none">
|
|
<div class="conter" style="border: none">
|
|
<el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange">
|
|
<el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange">
|
|
<el-table-column type="index" :index="indexAdd" label="序号" width="70px"></el-table-column>
|
|
<el-table-column type="index" :index="indexAdd" label="序号" width="70px"></el-table-column>
|
|
- <el-table-column prop="AAA28" label="病案号"></el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="AAA28" label="病案号">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span class="blue" @click="funGoto(scope.row.ZYH)">
|
|
|
|
+ <template>
|
|
|
|
+ <div>
|
|
|
|
+ {{ scope.row.AAA28 }}
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column prop="AAB01" label="入院时间"></el-table-column>
|
|
<el-table-column prop="AAB01" label="入院时间"></el-table-column>
|
|
<el-table-column prop="YZMC" label="医嘱名称"></el-table-column>
|
|
<el-table-column prop="YZMC" label="医嘱名称"></el-table-column>
|
|
|
|
+ <el-table-column prop="YZJL" label="剂量"></el-table-column>
|
|
|
|
+ <el-table-column prop="SYPC" label="用法"></el-table-column>
|
|
<el-table-column prop="BRKS" label="病人科室"></el-table-column>
|
|
<el-table-column prop="BRKS" label="病人科室"></el-table-column>
|
|
<el-table-column prop="KZKS" label="开嘱科室"></el-table-column>
|
|
<el-table-column prop="KZKS" label="开嘱科室"></el-table-column>
|
|
<el-table-column prop="YZQX" label="医嘱期效"></el-table-column>
|
|
<el-table-column prop="YZQX" label="医嘱期效"></el-table-column>
|
|
@@ -149,7 +161,7 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
funGoto(val) {
|
|
funGoto(val) {
|
|
this.storageSet('getData', val);
|
|
this.storageSet('getData', val);
|
|
- this.goto('/caseViews');
|
|
|
|
|
|
+ this.$router.push({ path: '/caseViews', query: { status: 1} })
|
|
},
|
|
},
|
|
indexAdd(index) {
|
|
indexAdd(index) {
|
|
return index + 1 + (this.paginationData.currentPage - 1) * this.paginationData.pageSize;
|
|
return index + 1 + (this.paginationData.currentPage - 1) * this.paginationData.pageSize;
|