|
@@ -120,7 +120,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="" label="门诊号">
|
|
<el-table-column prop="" label="门诊号">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span class="blue" @click="funGoto(scope.row.BLBH)">
|
|
|
|
|
|
+ <span class="blue" @click="funGoto(scope.row.BLBH,scope.row.xm)">
|
|
{{ scope.row.mzh }}
|
|
{{ scope.row.mzh }}
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</template>
|
|
@@ -239,7 +239,7 @@ import { dateFormat } from '@/utils/index'
|
|
this.getList(0)
|
|
this.getList(0)
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- funGoto(blbh) {
|
|
|
|
|
|
+ funGoto(blbh,xm) {
|
|
const { path } = this.$route;
|
|
const { path } = this.$route;
|
|
let toPath;
|
|
let toPath;
|
|
if (path === '/whitelist-search') {
|
|
if (path === '/whitelist-search') {
|
|
@@ -247,7 +247,7 @@ import { dateFormat } from '@/utils/index'
|
|
} else {
|
|
} else {
|
|
toPath = '/outpatientMedicalRecordDetail';
|
|
toPath = '/outpatientMedicalRecordDetail';
|
|
}
|
|
}
|
|
- this.$router.push({ path: toPath, query: { blbh, from: 'search' } })
|
|
|
|
|
|
+ this.$router.push({ path: toPath, query: { blbh,xm, from: 'search' } })
|
|
},
|
|
},
|
|
selectInfo() {
|
|
selectInfo() {
|
|
this.$axios.post('/get_omr_department_list').then(res => {
|
|
this.$axios.post('/get_omr_department_list').then(res => {
|