Commit 68104d96 authored by gengchunlei's avatar gengchunlei

医生端 v1.2 1、高危筛查 随访下的通用随访详情

parent 747b43e3
...@@ -39,13 +39,13 @@ ...@@ -39,13 +39,13 @@
<span>{{ item.visitUnitName || '-' }}</span> <span>{{ item.visitUnitName || '-' }}</span>
</div> </div>
</div> </div>
<div class="divider my-3" v-if="item.serveType == 3"></div> <div class="divider my-3" ></div>
<div class="bt-group" v-if="item.serveType == 3"> <div class="bt-group">
<van-button round size="small" class="doc-btn-primary" @click="toDetail(item)">详情</van-button> <van-button round size="small" class="doc-btn-primary" @click="toDetail(item)">详情</van-button>
<!-- <van-button round size="small" class="doc-btn-primary" @click='editBtn(item)' <van-button round size="small" class="doc-btn-primary" @click='editBtn(item)'
v-if="!(item.allowUpdate !==1 || item.serveType == 3)">修改</van-button> v-if="!(item.allowUpdate !==1 || item.serveType == 3)">修改</van-button>
<van-button round size="small" class="doc-btn-red" @click="delBtn(item)" <van-button round size="small" class="doc-btn-red" @click="delBtn(item)"
v-if="!(item.allowUpdate !==1 || item.serveType == 3)">删除</van-button> --> v-if="!(item.allowUpdate !==1 || item.serveType == 3)">删除</van-button>
</div> </div>
</div> </div>
</div> </div>
...@@ -133,9 +133,9 @@ export default { ...@@ -133,9 +133,9 @@ export default {
} }
if (record.serveType == 3) { if (record.serveType == 3) {
this.$router.push({ this.$router.push({
path: '/doctor/followUp/generalFU/detail', path: '/doctor/screening/highVisit/GeneralFUDetail',
query: { query: {
relationId: record.relationId id: record.relationId
} }
}) })
} }
......
<!--专病随访详情页中间页-->
<template>
<div>
<!-- 通用随访详情-->
<currency-f-u-detail :id='id'></currency-f-u-detail>
</div>
</template>
<script>
import CurrencyFUDetail from '@/doctor/followUp/generalFU/detail/Detail'
export default {
name: 'GeneralFUDetail',
components: { CurrencyFUDetail },
data() {
return {}
},
computed: {
id() {
return this.$route.query.id
}
}
}
</script>
<style scoped>
</style>
\ No newline at end of file
...@@ -85,6 +85,11 @@ const routes = [ ...@@ -85,6 +85,11 @@ const routes = [
name: 'screening-secondDetail', name: 'screening-secondDetail',
component: () => import(/* webpackChunkName: "doctor" */ '@/doctor/screening/detail/SecondDetail.vue') component: () => import(/* webpackChunkName: "doctor" */ '@/doctor/screening/detail/SecondDetail.vue')
}, },
{
path: 'screening/highVisit/GeneralFUDetail',
name: 'screening-highVisit-GeneralFUDetail',
component: () => import(/* webpackChunkName: "doctor" */ '@/doctor/screening/detail/GeneralFUDetail')
},
{ {
path: 'followUp/detail', path: 'followUp/detail',
name: 'followUp-detail', name: 'followUp-detail',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment