Commit 1bd41aeb authored by 芮自成's avatar 芮自成

Merge branch 'chronic-dev' of http://gitlab.yiboshi.com/nightkis1995/frontend-h5 into chronic-dev

parents 11b5b199 d365f0e8
...@@ -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
} }
}) })
} }
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<span @click="onBack" class="text-12 back-bt"> <span @click="onBack" class="text-12 back-bt">
<doc-icon type="doc-left2" /> <doc-icon type="doc-left2" />
</span> </span>
<span>高危筛查详情</span> <span>主要慢病筛查详情</span>
</div> </div>
<div class="px-4 py-3 flex shrink-0 base-info"> <div class="px-4 py-3 flex shrink-0 base-info">
<div class="flex w-full"> <div class="flex w-full">
......
<!--专病随访详情页中间页-->
<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