Commit f9ea85af 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 61bba95b 26573305
...@@ -20,9 +20,9 @@ export default { ...@@ -20,9 +20,9 @@ export default {
return { return {
visible: false, visible: false,
themeVars: { themeVars: {
primaryColor: '#54CCBD', primaryColor: '#607FF0',
buttonPrimaryBackground: '#54CCBD', buttonPrimaryBackground: '#607FF0',
buttonPrimaryBorderColor: '#54CCBD', buttonPrimaryBorderColor: '#607FF0',
buttonDefaultBorderColor: '#BFBFBF', buttonDefaultBorderColor: '#BFBFBF',
buttonNormalFontSize: '16px', buttonNormalFontSize: '16px',
// 表单相关 // 表单相关
......
...@@ -57,9 +57,9 @@ ...@@ -57,9 +57,9 @@
<div class='detail-left' :style="{marginTop: item.diseaseList.length ? '0px': '12px'}"> <div class='detail-left' :style="{marginTop: item.diseaseList.length ? '0px': '12px'}">
慢病标签 慢病标签
</div> </div>
<div class='detail-right'> <div class='detail-right' style='flex: 1'>
<div class='flex items-center' <div class='flex items-center '
style='flex-wrap: wrap;justify-content: center;align-content: center'> style='flex-wrap: wrap;'>
<div v-for='item1 in item.diseaseList' :class='`mt-3 ill-tabs ill-tabs-${item1.id}`'> <div v-for='item1 in item.diseaseList' :class='`mt-3 ill-tabs ill-tabs-${item1.id}`'>
{{ item1.name }} {{ item1.name }}
</div> </div>
...@@ -197,12 +197,12 @@ export default { ...@@ -197,12 +197,12 @@ export default {
}, },
toGeneralDetail() { toGeneralDetail() {
this.$router.push({ this.$router.push({
path: `/followUp/generalFU/detail` path: `/doctor/followUp/generalFU/detail`
}) })
}, },
toAddGeneral() { toAddGeneral() {
this.$router.push({ this.$router.push({
path: `/followUp/generalFU/add` path: `/doctor/followUp/generalFU/add`
}) })
} }
} }
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
disabled disabled
placeholder='证件类型' placeholder='证件类型'
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
:rules="rules.certificateTypeName" :rules='rules.certificateTypeName'
/> />
<div class='label-title mt-5'>证件号码</div> <div class='label-title mt-5'>证件号码</div>
<van-field <van-field
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
disabled disabled
placeholder='证件号码' placeholder='证件号码'
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
:rules="rules.idCard" :rules='rules.idCard'
/> />
<div class='label-title mt-5'>姓名</div> <div class='label-title mt-5'>姓名</div>
<van-field <van-field
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
clearable clearable
placeholder='姓名' placeholder='姓名'
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
:rules="rules.residentName" :rules='rules.residentName'
/> />
<div class='label-title mt-5'>性别</div> <div class='label-title mt-5'>性别</div>
<van-field <van-field
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
disabled disabled
placeholder='性别' placeholder='性别'
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
:rules="rules.genderName" :rules='rules.genderName'
/> />
<div class='label-title mt-5'>出生日期</div> <div class='label-title mt-5'>出生日期</div>
<van-field <van-field
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
disabled disabled
placeholder='出生日期' placeholder='出生日期'
class='input-back mt-2 form-input' class='input-back mt-2 form-input'
:rules="rules.dataBirth" :rules='rules.dataBirth'
/> />
<div class='label-title mt-5'>民族</div> <div class='label-title mt-5'>民族</div>
<van-field <van-field
...@@ -53,24 +53,376 @@ ...@@ -53,24 +53,376 @@
readonly readonly
name='national' name='national'
placeholder='请选择' placeholder='请选择'
class='input-back mt-2 form-input'
:rules='rules.nationalName' :rules='rules.nationalName'
@click='showNational = true' /> @click='showNational = true' />
<van-popup v-model:show="showNational" position="bottom"> <van-popup v-model:show='showNational' position='bottom'>
<van-picker <van-picker
:columns-field-names="{ text: 'name', value: 'value' }" :columns-field-names="{ text: 'name', value: 'value' }"
:columns="store.getDict('DC00006')" :columns="store.getDict('DC00006')"
@confirm="nationalConfirm" @confirm='nationalConfirm'
@cancel="showNational = false" @cancel='showNational = false'
/>
</van-popup>
<div class='label-title mt-5'>年龄</div>
<van-field
v-model='form.currentAge'
disabled
placeholder='年龄'
class='input-back mt-2 form-input'
:rules='rules.currentAge'
/>
<div class='label-title mt-5'>本人电话</div>
<van-field
v-model='form.telephone'
clearable
placeholder='本人电话'
class='input-back mt-2 form-input'
:rules='rules.telephone'
/>
<div class='no-req-label mt-5'>联系人姓名</div>
<van-field
v-model='form.contactName'
clearable
placeholder='联系人姓名'
class='input-back mt-2 form-input'
:rules='rules.contactName'
/>
<div class='label-title mt-5'>现住址</div>
<van-field
v-model='form.presentCodeName'
is-link
readonly
placeholder='请选择所在地区'
class='input-back mt-2 form-input'
:rules='rules.presentCodeName'
@click='showPresent = true'
/>
<van-popup v-model:show='showPresent' :close-on-click-overlay='false' position='bottom'>
<DocAddress v-model:value='form.presentCode' @close='showPresent = false'
:viewData='addressRecord.presentCode'
@change='presentChange' />
</van-popup>
<div class='no-req-label mt-5'>详细地址</div>
<van-field
v-model='form.nowAddress'
clearable
class='input-back mt-2 form-input'
placeholder='请填写详细地址'
maxlength='50'
/> />
<div class='flex items-center justify-between mt-5'>
<div class='label-title '>户口地址</div>
<van-button size='mini' plain type='primary'
@click='setRegisteredAddress'>同步住址
</van-button>
</div>
<van-field
v-model='form.registeredCodeName'
is-link
readonly
placeholder='请选择所在地区'
class='input-back mt-2 form-input'
:rules='rules.registeredCode'
@click='showRegistered = true'
/>
<van-popup v-model:show='showRegistered' :close-on-click-overlay='false' position='bottom'>
<DocAddress v-model:value='form.registeredCode' @close='showRegistered = false'
:viewData='addressRecord.registeredCode'
@change='registeredChange' />
</van-popup>
<div class='no-req-label mt-5'>详细地址</div>
<van-field
v-model='form.permanentAddress'
clearable
class='input-back mt-2 form-input'
placeholder='请填写详细地址'
maxlength='50'
/>
<div class='title mt-5'>随访信息</div>
<div class='label-title mt-5'>本次随访情况</div>
<van-field name='radio' :rules='rules.visitSituation' class='p-12-0' >
<template #input>
<van-radio-group v-model='form.visitSituation' class='w-full' shape='dot'>
<van-cell-group>
<van-cell title='在访' clickable @click="form.visitSituation = '1'"
class='input-back form-input'>
<template #right-icon>
<van-radio name='1' />
</template>
</van-cell>
<van-cell title='失访' clickable @click="form.visitSituation = '2'"
class='input-back mt-2 form-input'>
<template #right-icon>
<van-radio name='2' />
</template>
</van-cell>
</van-cell-group>
</van-radio-group>
</template>
</van-field>
<div class='label-title mt-5' v-if='form.visitSituation == 2'>失访原因</div>
<van-field name='radio' :rules='rules.lossReason' class='p-12-0'
v-if='form.visitSituation == 2'>
<template #input>
<van-radio-group v-model='form.lossReason' class='w-full' shape='dot'>
<van-cell-group>
<van-cell title='无法联系' clickable @click="form.lossReason = '1'"
class='input-back form-input'>
<template #right-icon>
<van-radio name='1' />
</template>
</van-cell>
<van-cell title='患者拒绝随访' clickable @click="form.lossReason = '2'"
class='input-back mt-2 form-input'>
<template #right-icon>
<van-radio name='2' />
</template>
</van-cell>
<van-cell title='死亡' clickable @click="form.lossReason = '3'"
class='input-back mt-2 form-input'>
<template #right-icon>
<van-radio name='3' />
</template>
</van-cell>
<van-field
v-if='form.lossReason == 3'
v-model='form.deathReason'
clearable
placeholder='死亡原因'
class='input-back mt-2 form-input'
/>
<van-cell title='其他' clickable @click="form.lossReason = '9'"
class='input-back mt-2 form-input'>
<template #right-icon>
<van-radio name='9' />
</template>
</van-cell>
<van-field
v-if='form.lossReason == 9'
v-model='form.lossReasonOther'
clearable
placeholder='其他原因'
class='input-back mt-2 form-input'
/>
</van-cell-group>
</van-radio-group>
</template>
</van-field>
<div class='label-title mt-5'>随访方式</div>
<van-field name='radio' :rules='rules.visitWay' class='p-12-0'>
<template #input>
<van-radio-group v-model='form.visitWay' class='w-full' shape='dot'>
<van-cell-group>
<van-cell title='门诊' clickable @click="form.visitWay = '5'"
class='input-back form-input'
:style="{borderRadius: form.visitWay == 5 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='5' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 5'>
<div class='tel flex items-center justify-between'>
<div>
<span>居民电话: </span><span>{{ form.telephone }}</span>
</div>
<div @click='toTel' class='tel-label'>点击拨打</div>
</div>
</div>
<van-cell title='住院' clickable @click="form.visitWay = '6'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 6 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='6' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 6'>
<div class='tel flex items-center justify-between'>
<div>
<span>居民电话: </span><span>{{ form.telephone }}</span>
</div>
<div @click='toTel' class='tel-label'>点击拨打</div>
</div>
</div>
<van-cell title='入户' clickable @click="form.visitWay = '7'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 7 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='7' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 7'>
<div class='tel flex items-center justify-between'>
<div>
<span>居民电话: </span><span>{{ form.telephone }}</span>
</div>
<div @click='toTel' class='tel-label'>点击拨打</div>
</div>
</div>
<van-cell title='电话' clickable @click="form.visitWay = '8'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 8 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='8' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 8'>
<div class='tel flex items-center justify-between'>
<div>
<span>居民电话: </span><span>{{ form.telephone }}</span>
</div>
<div @click='toTel' class='tel-label'>点击拨打</div>
</div>
</div>
<van-cell title='短信(指导)' clickable @click="form.visitWay = '9'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 9 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='9' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 9'>
<div class='tel'>
<div>
是否指导?
</div>
<van-radio-group v-model="form.isHealthGuide" direction="horizontal" shape='dot'>
<div class='flex items-center w-full'>
<van-cell title="是" clickable
@click="form.isHealthGuide = '1'"
style='flex: 1'
class='input-back form-input'
>
<template #right-icon>
<van-radio name="1" />
</template>
</van-cell>
<van-cell title="否" clickable
@click="form.isHealthGuide = '2'"
style='flex: 1'
class='input-back form-input ml-2'
>
<template #right-icon>
<van-radio name="2" />
</template>
</van-cell>
</div>
</van-radio-group>
</div>
</div>
<van-cell title='微信(指导)' clickable @click="form.visitWay = '11'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 11 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='11' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 11'>
<div class='tel'>
<div>
是否指导?
</div>
<van-radio-group v-model="form.isHealthGuide" direction="horizontal" shape='dot'>
<div class='flex items-center w-full'>
<van-cell title="是" clickable
@click="form.isHealthGuide = '1'"
style='flex: 1'
class='input-back form-input'
>
<template #right-icon>
<van-radio name="1" />
</template>
</van-cell>
<van-cell title="否" clickable
@click="form.isHealthGuide = '2'"
style='flex: 1'
class='input-back form-input ml-2'
>
<template #right-icon>
<van-radio name="2" />
</template>
</van-cell>
</div>
</van-radio-group>
</div>
</div>
<van-cell title='短信(催检)' clickable @click="form.visitWay = '10'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 10 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='10' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 10'>
<div class='tel'>
<div>
催检内容:
</div>
<div>
请您于{{form.screenTime}}到{{authInfo.unitName }}棉一社区服务中心进行复查,祝早日 恢复健康!
</div>
<div class='mt-2' style='text-align: center'>
<span style='color: #607FF0' @click='showTime1 = true'>修改日期</span>
</div>
</div>
</div>
<van-popup v-model:show="showTime1" position="bottom">
<van-date-picker @confirm="timeConfirm1" @cancel="showBirth = false" />
</van-popup> </van-popup>
<van-cell title='微信(催检)' clickable @click="form.visitWay = '12'"
class='input-back mt-2 form-input'
:style="{borderRadius: form.visitWay == 12 ? '8px 8px 0px 0px ': '8px'}"
>
<template #right-icon>
<van-radio name='12' />
</template>
</van-cell>
<div class='tel-back' v-if='form.visitWay == 12'>
<div class='tel'>
<div>
催检内容:
</div>
<div>
请您于{{form.screenTime}}到{{authInfo.unitName }}棉一社区服务中心进行复查,祝早日 恢复健康!
</div>
<div class='mt-2' style='text-align: center'>
<span style='color: #607FF0' @click='showTime2 = true'>修改日期</span>
</div>
</div>
</div>
<van-popup v-model:show="showTime2" position="bottom">
<van-date-picker @confirm="timeConfirm2" @cancel="showBirth = false" />
</van-popup>
</van-cell-group>
</van-radio-group>
</template>
</van-field>
</van-cell-group> </van-cell-group>
</van-form> </van-form>
</div> </div>
</template> </template>
<script> <script>
import { fetchDataHandle } from '@/utils/common' import { addToArr, fetchDataHandle } from '@/utils/common'
import { useStore } from '@/resident/store' import { useStore } from '@/resident/store'
import DocAddress from '@/components/docAddress/DocAddress'
import dayjs from 'dayjs'
const defaultForm = (info = {}) => { const defaultForm = (info = {}) => {
const form = { const form = {
...@@ -133,7 +485,7 @@ const defaultForm = (info = {}) => { ...@@ -133,7 +485,7 @@ const defaultForm = (info = {}) => {
workUnit: undefined, workUnit: undefined,
// diseaseId: undefined, // diseaseId: undefined,
// 与居民关系 // 与居民关系
relation: undefined relation: undefined,
// relationOther: undefined, // relationOther: undefined,
// 人群 // 人群
// chronicTagsArray: undefined, // chronicTagsArray: undefined,
...@@ -144,6 +496,14 @@ const defaultForm = (info = {}) => { ...@@ -144,6 +496,14 @@ const defaultForm = (info = {}) => {
// createOfficeName: undefined, // createOfficeName: undefined,
// createUnitId: undefined, // createUnitId: undefined,
// createUnitName: undefined // createUnitName: undefined
//本次随访情况
visitSituation: undefined,
lossReason: undefined,
deathReason: undefined,
lossReasonOther: undefined,
visitWay: undefined,
isHealthGuide: undefined,
screenTime: new dayjs().add(1, 'day').format('YYYY-MM-DD'),
} }
Reflect.ownKeys(form).forEach(key => { Reflect.ownKeys(form).forEach(key => {
if (info[key] != undefined) { if (info[key] != undefined) {
...@@ -158,6 +518,7 @@ const defaultForm = (info = {}) => { ...@@ -158,6 +518,7 @@ const defaultForm = (info = {}) => {
} }
export default { export default {
name: 'BaseInfo', name: 'BaseInfo',
components: { DocAddress },
props: { props: {
info: { info: {
default: () => { default: () => {
...@@ -168,16 +529,33 @@ export default { ...@@ -168,16 +529,33 @@ export default {
data() { data() {
return { return {
store: useStore(), store: useStore(),
authInfo: {},
// 民族 // 民族
showNational: false, showNational: false,
// 现住址
showPresent: false,
// 户籍地址
showRegistered: false,
// 地址回显使用
addressRecord: {},
showTime1: false,
showTime2: false,
form: {}, form: {},
rules: { rules: {
certificateTypeName: [{ required: true, message: '请选择证件类型' }], certificateTypeName: [{ required: true, message: '请选择证件类型' }],
idCard: [{ required: true, message: '请填写证件号码' }], idCard: [{ required: true, message: '请填写证件号码' }],
residentName:[{ required: true, message: '请填写姓名' }], residentName: [{ required: true, message: '请填写姓名' }],
genderName: [{ required: true, message: '请选择性别' }], genderName: [{ required: true, message: '请选择性别' }],
dataBirth: [{ required: true, message: '请选择出生日期' }], dataBirth: [{ required: true, message: '请选择出生日期' }],
nationalName: [{ required: true, message: '请选择名族' }], nationalName: [{ required: true, message: '请选择名族' }],
currentAge: [{ required: true, message: '请填写年龄' }],
telephone: [{ required: true, message: '请填写本人电话' }],
contactName: [{ required: false, message: '请填写联系人姓名' }],
presentCodeName: [{ required: true, message: '请选择所在地区' }],
registeredCode: [{ required: true, message: '请选择所在地区' }],
visitSituation: [{ required: true, message: '请选择' }],
lossReason: [{ required: true, message: '请选择' }],
visitWay: [{ required: true, message: '请选择' }]
} }
} }
}, },
...@@ -185,6 +563,8 @@ export default { ...@@ -185,6 +563,8 @@ export default {
'info': { 'info': {
handler() { handler() {
this.form = defaultForm(this.info) this.form = defaultForm(this.info)
// this.addressRecord.presentCode = addToArr(this.form.presentCode)
// this.addressRecord.registeredCode = addToArr(this.form.registeredCode)
}, },
immediate: true immediate: true
} }
...@@ -196,6 +576,47 @@ export default { ...@@ -196,6 +576,47 @@ export default {
this.form.nationalName = selectedOptions[0].name this.form.nationalName = selectedOptions[0].name
this.showNational = false this.showNational = false
}, },
// 现住址
presentChange(val) {
const selectedOptions = val.selectedOptions
this.form.presentCodeName = selectedOptions.map(e => e.text).join('/')
},
// 户口地址
registeredChange(val) {
const selectedOptions = val.selectedOptions
this.form.registeredCodeName = selectedOptions.map(e => e.text).join('/')
if (!this.form.presentCode && selectedOptions.length >= 5) {
this.form.presentCode = val.value
this.form.presentCodeName = this.form.registeredCodeName
}
},
// 同步现住址
setRegisteredAddress() {
this.$refs.form.validate(['presentCode']).then(res => {
this.form.registeredCode = this.form.presentCode
this.form.registeredCodeName = this.form.presentCodeName
this.form.permanentAddress = this.form.nowAddress
this.addressRecord.registeredCode = addToArr(this.form.presentCode)
}).catch(err => console.warn(err))
},
toTel() {
// 创建一个电话号码的URL
let phoneNumber = '18487350810'; // 替换为需要拨打的号码
let url = 'tel:' + encodeURIComponent(phoneNumber);
// 创建一个a标签
let a = document.createElement('a');
a.href = url;
// 触发a标签的点击事件
a.click();
},
timeConfirm1({ selectedValues }) {
this.form.screenTime = selectedValues.join('-')
this.showTime1 = false
},
timeConfirm2({ selectedValues }) {
this.form.screenTime = selectedValues.join('-')
this.showTime2 = false
},
onSubmit() { onSubmit() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
this.$refs.form.validate().then(() => { this.$refs.form.validate().then(() => {
...@@ -235,6 +656,11 @@ export default { ...@@ -235,6 +656,11 @@ export default {
} }
} }
.no-req-label {
font-size: 13px;
color: #595959;
font-weight: 500;
}
.form-input { .form-input {
padding: 8px 12px; padding: 8px 12px;
...@@ -245,6 +671,25 @@ export default { ...@@ -245,6 +671,25 @@ export default {
background: #FAFAFA; background: #FAFAFA;
} }
.tel-back {
background: #F5F5F5;
padding: 8px;
border-radius: 0px 0px 8px 8px;
}
.tel {
background: #FFFFFF;
padding: 8px;
border-radius: 8px;
}
.tel-label {
color: #607FF0;
font-weight: bold;
}
.p-12-0 {
padding: 12px 0px;
}
:deep(.van-cell-group--inset) { :deep(.van-cell-group--inset) {
overflow: visible; overflow: visible;
} }
...@@ -257,4 +702,7 @@ export default { ...@@ -257,4 +702,7 @@ export default {
position: absolute; position: absolute;
top: 31px; top: 31px;
} }
:deep(.van-cell:after) {
border-bottom: 0px;
}
</style> </style>
\ No newline at end of file
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
<div> <div>
<van-nav-bar title='新增通用随访' left-text='' left-arrow> <van-nav-bar title='新增通用随访' left-text='' left-arrow>
</van-nav-bar> </van-nav-bar>
<div class='p-4 h-overflow'>
<div class='p-4'>
<base-info :info="resident"></base-info> <base-info :info="resident"></base-info>
</div> </div>
</div> </div>
...@@ -59,4 +58,8 @@ export default { ...@@ -59,4 +58,8 @@ export default {
:deep(.van-nav-bar .van-icon) { :deep(.van-nav-bar .van-icon) {
color: #000000; color: #000000;
} }
.h-overflow {
height: calc(100vh - 60px);
overflow-y: auto;
}
</style> </style>
\ No newline at end of file
...@@ -29,17 +29,17 @@ const routes = [ ...@@ -29,17 +29,17 @@ const routes = [
component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/Doctor'), component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/Doctor'),
children: [ children: [
{ {
path: '/followUp/list', path: 'followUp/list',
name: 'followUp-list', name: 'followUp-list',
component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/followUp/List') component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/followUp/List')
}, },
{ {
path: '/followUp/generalFU/detail', path: 'followUp/generalFU/detail',
name: 'followUp-generalFU-detail', name: 'followUp-generalFU-detail',
component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/followUp/generalFU/detail/Detail') component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/followUp/generalFU/detail/Detail')
}, },
{ {
path: '/followUp/generalFU/add', path: 'followUp/generalFU/add',
name: 'followUp-generalFU-add', name: 'followUp-generalFU-add',
component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/followUp/generalFU/form/Index') component: () => import(/* webpackChunkName: "page-resident" */ '@/doctor/followUp/generalFU/form/Index')
}, },
......
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