Commit eaabfc4b authored by songrui's avatar songrui

Merge branch 'chronic-master' of…

Merge branch 'chronic-master' of http://gitlab.yiboshi.com/nightkis1995/frontend-h5 into chronic-master
parents 132301fa 9c01d57f
......@@ -8,3 +8,8 @@ export function queryVisitList(params) {
export function queryGeneralFUDetail(params) {
return fetchBase({ url: `/chronic-resident/v1/chronic-visit-record/currency-detail`, body: params, loading: true })
}
// 查询专病随访详情
export function querySeparateFUDetail(params) {
return fetchBase({ url: `/chronic-resident/v1/chronic-visit-record/specialized-detail`, body: params, loading: true })
}
\ No newline at end of file
......@@ -163,8 +163,8 @@ export default {
if (item.serveType == 5) {
path = `GeneralFUDetail/${item.relationId}`
}
if (item.serveType == 3 || item.serveType == 4){
if (item.serveType == 3 || item.serveType == 4) {
path = `SeparateFUDetail/${item.relationId}/${item.diseaseType}`
}
this.$router.push({
path,
......
This diff is collapsed.
......@@ -118,6 +118,12 @@ const routes = [
name: 'resident-visit-GeneralFUDetail',
component: () => import(/* webpackChunkName: "residentWX-screening" */ '@/residentWX/visit/detail/GeneralFUDetail.vue')
},
// 专病随访详情
{
path: 'visit/SeparateFUDetail/:relationId/:diseaseType',
name: 'resident-visit-SeparateFUDetail',
component: () => import(/* webpackChunkName: "residentWX-screening" */ '@/residentWX/visit/detail/SeparateFUDetail.vue')
},
// 健康指导宣教
{
path: 'guide/list',
......
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