Commit 29f16b1c authored by gengchunlei's avatar gengchunlei

慢综 医生端 随访方式新增随访表单及居民基本信息表单字段调整

parent ace5aba7
...@@ -52,7 +52,7 @@ export default { ...@@ -52,7 +52,7 @@ export default {
if (!token) { if (!token) {
token = sessionStorage.getItem('token') token = sessionStorage.getItem('token')
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
token = '42a5a452-5b42-478f-93f8-0b5198686791' token = 'f7893d91-e7e0-4a32-aa16-3fd1cdfef2cb'
} }
} }
if (token) { if (token) {
......
...@@ -565,7 +565,16 @@ const defaultForm = (info = {}) => { ...@@ -565,7 +565,16 @@ const defaultForm = (info = {}) => {
lossReasonOther: undefined, lossReasonOther: undefined,
visitWay: 5, visitWay: 5,
isHealthGuide: 1, isHealthGuide: 1,
screenTime: new dayjs().add(1, 'day').format('YYYY-MM-DD') screenTime: new dayjs().add(1, 'day').format('YYYY-MM-DD'),
chronicCrowd: undefined,
chronicTagsArray: undefined,
firstScreenDate: undefined,
firstScreenResult: undefined,
highTagsArray: undefined,
highTags: undefined,
latelyDiagnoseDate: undefined,
latelyScreenDate:undefined,
} }
Reflect.ownKeys(form).forEach(key => { Reflect.ownKeys(form).forEach(key => {
if (info[key] != undefined) { if (info[key] != undefined) {
......
...@@ -58,7 +58,9 @@ export default { ...@@ -58,7 +58,9 @@ export default {
visitSituation: 1, visitSituation: 1,
step: 1, step: 1,
//第一步提交的表单 //第一步提交的表单
firstForm: {} firstForm: {},
//居民信息
residentInfo: {}
} }
}, },
created() { created() {
......
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