|
@@ -17,6 +17,15 @@
|
|
prop="AAA28"
|
|
prop="AAA28"
|
|
label="住院号"
|
|
label="住院号"
|
|
width="160">
|
|
width="160">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span class="blue" @click="funGoto(scope.row)">
|
|
|
|
+ <template>
|
|
|
|
+ <div class="link">
|
|
|
|
+ {{ scope.row.AAA28 }}
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </span>
|
|
|
|
+ </template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
prop="AAA01"
|
|
prop="AAA01"
|
|
@@ -72,7 +81,17 @@ import Title from '@/components/Title';
|
|
methods: {
|
|
methods: {
|
|
onExport() {
|
|
onExport() {
|
|
this.$emit('export')
|
|
this.$emit('export')
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ funGoto(row) {
|
|
|
|
+ this.storageSet('getData', row.MED_REC_ID);
|
|
|
|
+ let path
|
|
|
|
+ if (this.$route.path === '/embedIndex-caseIndexAnalysisList') {
|
|
|
|
+ path = '/embedIndex-caseViews'
|
|
|
|
+ } else {
|
|
|
|
+ path = '/caseViews'
|
|
|
|
+ }
|
|
|
|
+ this.goto(path);
|
|
|
|
+ },
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
@@ -97,4 +116,8 @@ import Title from '@/components/Title';
|
|
::v-deep.el-table .el-table__header tr th:nth-child(3) {
|
|
::v-deep.el-table .el-table__header tr th:nth-child(3) {
|
|
border-radius: 0px 5px 5px 0px;
|
|
border-radius: 0px 5px 5px 0px;
|
|
}
|
|
}
|
|
|
|
+.blue {
|
|
|
|
+ color: #185da6;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|