Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
c4ea5890
提交
c4ea5890
编写于
4月 29, 2019
作者:
tao.wu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
no message
上级
184a1f2c
变更
7
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
247 行增加
和
257 行删除
+247
-257
form-template.vue
src/views/followup/record-manage/form-template.vue
+6
-2
hypeDataSourceHelpChecking.js
...-manage/models/hypertension/hypeDataSourceHelpChecking.js
+56
-56
hypeDataSourceLifeMode.js
...cord-manage/models/hypertension/hypeDataSourceLifeMode.js
+56
-56
hypeDataSourceMedicationUse.js
...manage/models/hypertension/hypeDataSourceMedicationUse.js
+56
-56
hypeDataSourceSign.js
...p/record-manage/models/hypertension/hypeDataSourceSign.js
+56
-56
hypeDataSourceSymptom.js
...ecord-manage/models/hypertension/hypeDataSourceSymptom.js
+16
-2
stroke.vue
src/views/followup/record-manage/patient-scale/stroke.vue
+1
-29
未找到文件。
src/views/followup/record-manage/form-template.vue
浏览文件 @
c4ea5890
...
@@ -27,7 +27,10 @@
...
@@ -27,7 +27,10 @@
<!--模板页面除了显示居民基本信息,将病种展示作为组件引入-->
<!--模板页面除了显示居民基本信息,将病种展示作为组件引入-->
<div
class=
"form-container"
>
<div
class=
"form-container"
>
<stroke
:showBtn=
"showBtn"
:scaleType=
"scaleNo"
:checkStart=
"checkStart"
@
checkEnd=
"checkEnd"
:saveWay=
"saveWay"
/>
<!--脑卒中-->
<stroke
v-if=
"scaleNo=='SCALE0003'"
:showBtn=
"showBtn"
:scaleType=
"scaleNo"
:checkStart=
"checkStart"
@
checkEnd=
"checkEnd"
:saveWay=
"saveWay"
/>
<!--高血压-->
<hypertension
v-if=
"scaleNo=='SCALE0001'"
:showBtn=
"showBtn"
:scaleType=
"scaleNo"
:checkStart=
"checkStart"
@
checkEnd=
"checkEnd"
:saveWay=
"saveWay"
></hypertension>
</div>
</div>
...
@@ -39,9 +42,9 @@
...
@@ -39,9 +42,9 @@
<
script
>
<
script
>
import
BreadCrumb
from
'@/components/breadcrumb'
import
BreadCrumb
from
'@/components/breadcrumb'
// 脑卒中
// 脑卒中
import
stroke
from
'./patient-scale/stroke'
import
stroke
from
'./patient-scale/stroke'
import
hypertension
from
'./patient-scale/hypertension'
export
default
{
export
default
{
data
(){
data
(){
return
{
return
{
...
@@ -56,6 +59,7 @@
...
@@ -56,6 +59,7 @@
},
},
components
:
{
components
:
{
stroke
,
stroke
,
hypertension
,
BreadCrumb
,
BreadCrumb
,
},
},
methods
:
{
methods
:
{
...
...
src/views/followup/record-manage/models/hypertension/hypeDataSourceHelpChecking.js
浏览文件 @
c4ea5890
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
export
default
(
$this
)
=>
{
export
default
(
$this
)
=>
{
return
[
return
[
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpOrgName'
,
//
prop: 'followUpOrgName',
model
:
'followUpOrgName'
,
//
model: 'followUpOrgName',
label
:
'随访单位名称:'
,
//
label: '随访单位名称:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访单位名称'
,
//
placeholder: '请输入随访单位名称',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访单位名称'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpUser'
,
//
prop: 'followUpUser',
model
:
'followUpUser'
,
//
model: 'followUpUser',
label
:
'随访人员姓名:'
,
//
label: '随访人员姓名:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员姓名'
,
//
placeholder: '请输入随访人员姓名',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员姓名'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpMobile'
,
//
prop: 'followUpMobile',
model
:
'followUpMobile'
,
//
model: 'followUpMobile',
label
:
'随访人员联系电话:'
,
//
label: '随访人员联系电话:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员联系电话'
,
//
placeholder: '请输入随访人员联系电话',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
11
,
//
maxlength: 11,
type
:
'tel'
,
//
type: 'tel',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员联系电话'
,
trigger
:
[
'submit'
,
'change'
]},{
validator
:
checkMobile
,
trigger
:
[
'submit'
,
'change'
]
}],
//
rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
},
//
},
{
//
{
formType
:
'date-picker'
,
//
formType: 'date-picker',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'surveyTime'
,
//
prop: 'surveyTime',
model
:
'surveyTime'
,
//
model: 'surveyTime',
placeholder
:
'请选择'
,
//
placeholder: '请选择',
label
:
'本次调查时间:'
,
//
label: '本次调查时间:',
format
:
'yyyy-MM-dd'
,
//
format: 'yyyy-MM-dd',
valueFormat
:
'yyyy-MM-dd'
,
//
valueFormat: 'yyyy-MM-dd',
dateType
:
'date'
,
//
dateType: 'date',
type
:
'date'
,
//
type: 'date',
rules
:
[{
required
:
true
,
message
:
'请选择本次调查时间'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
spanNum
:
12
,
//
spanNum: 12,
},
//
},
]
]
}
}
src/views/followup/record-manage/models/hypertension/hypeDataSourceLifeMode.js
浏览文件 @
c4ea5890
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
export
default
(
$this
)
=>
{
export
default
(
$this
)
=>
{
return
[
return
[
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpOrgName'
,
//
prop: 'followUpOrgName',
model
:
'followUpOrgName'
,
//
model: 'followUpOrgName',
label
:
'随访单位名称:'
,
//
label: '随访单位名称:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访单位名称'
,
//
placeholder: '请输入随访单位名称',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访单位名称'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpUser'
,
//
prop: 'followUpUser',
model
:
'followUpUser'
,
//
model: 'followUpUser',
label
:
'随访人员姓名:'
,
//
label: '随访人员姓名:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员姓名'
,
//
placeholder: '请输入随访人员姓名',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员姓名'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpMobile'
,
//
prop: 'followUpMobile',
model
:
'followUpMobile'
,
//
model: 'followUpMobile',
label
:
'随访人员联系电话:'
,
//
label: '随访人员联系电话:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员联系电话'
,
//
placeholder: '请输入随访人员联系电话',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
11
,
//
maxlength: 11,
type
:
'tel'
,
//
type: 'tel',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员联系电话'
,
trigger
:
[
'submit'
,
'change'
]},{
validator
:
checkMobile
,
trigger
:
[
'submit'
,
'change'
]
}],
//
rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
},
//
},
{
//
{
formType
:
'date-picker'
,
//
formType: 'date-picker',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'surveyTime'
,
//
prop: 'surveyTime',
model
:
'surveyTime'
,
//
model: 'surveyTime',
placeholder
:
'请选择'
,
//
placeholder: '请选择',
label
:
'本次调查时间:'
,
//
label: '本次调查时间:',
format
:
'yyyy-MM-dd'
,
//
format: 'yyyy-MM-dd',
valueFormat
:
'yyyy-MM-dd'
,
//
valueFormat: 'yyyy-MM-dd',
dateType
:
'date'
,
//
dateType: 'date',
type
:
'date'
,
//
type: 'date',
rules
:
[{
required
:
true
,
message
:
'请选择本次调查时间'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
spanNum
:
12
,
//
spanNum: 12,
},
//
},
]
]
}
}
src/views/followup/record-manage/models/hypertension/hypeDataSourceMedicationUse.js
浏览文件 @
c4ea5890
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
export
default
(
$this
)
=>
{
export
default
(
$this
)
=>
{
return
[
return
[
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpOrgName'
,
//
prop: 'followUpOrgName',
model
:
'followUpOrgName'
,
//
model: 'followUpOrgName',
label
:
'随访单位名称:'
,
//
label: '随访单位名称:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访单位名称'
,
//
placeholder: '请输入随访单位名称',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访单位名称'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpUser'
,
//
prop: 'followUpUser',
model
:
'followUpUser'
,
//
model: 'followUpUser',
label
:
'随访人员姓名:'
,
//
label: '随访人员姓名:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员姓名'
,
//
placeholder: '请输入随访人员姓名',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员姓名'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpMobile'
,
//
prop: 'followUpMobile',
model
:
'followUpMobile'
,
//
model: 'followUpMobile',
label
:
'随访人员联系电话:'
,
//
label: '随访人员联系电话:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员联系电话'
,
//
placeholder: '请输入随访人员联系电话',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
11
,
//
maxlength: 11,
type
:
'tel'
,
//
type: 'tel',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员联系电话'
,
trigger
:
[
'submit'
,
'change'
]},{
validator
:
checkMobile
,
trigger
:
[
'submit'
,
'change'
]
}],
//
rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
},
//
},
{
//
{
formType
:
'date-picker'
,
//
formType: 'date-picker',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'surveyTime'
,
//
prop: 'surveyTime',
model
:
'surveyTime'
,
//
model: 'surveyTime',
placeholder
:
'请选择'
,
//
placeholder: '请选择',
label
:
'本次调查时间:'
,
//
label: '本次调查时间:',
format
:
'yyyy-MM-dd'
,
//
format: 'yyyy-MM-dd',
valueFormat
:
'yyyy-MM-dd'
,
//
valueFormat: 'yyyy-MM-dd',
dateType
:
'date'
,
//
dateType: 'date',
type
:
'date'
,
//
type: 'date',
rules
:
[{
required
:
true
,
message
:
'请选择本次调查时间'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
spanNum
:
12
,
//
spanNum: 12,
},
//
},
]
]
}
}
src/views/followup/record-manage/models/hypertension/hypeDataSourceSign.js
浏览文件 @
c4ea5890
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
...
@@ -2,62 +2,62 @@ import { checkMobile } from '@/utils/followup/followupUtils/checkField';
export
default
(
$this
)
=>
{
export
default
(
$this
)
=>
{
return
[
return
[
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpOrgName'
,
//
prop: 'followUpOrgName',
model
:
'followUpOrgName'
,
//
model: 'followUpOrgName',
label
:
'随访单位名称:'
,
//
label: '随访单位名称:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访单位名称'
,
//
placeholder: '请输入随访单位名称',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访单位名称'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpUser'
,
//
prop: 'followUpUser',
model
:
'followUpUser'
,
//
model: 'followUpUser',
label
:
'随访人员姓名:'
,
//
label: '随访人员姓名:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员姓名'
,
//
placeholder: '请输入随访人员姓名',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
30
,
//
maxlength: 30,
type
:
'text'
,
//
type: 'text',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员姓名'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
},
//
},
{
//
{
formType
:
'input'
,
//
formType: 'input',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'followUpMobile'
,
//
prop: 'followUpMobile',
model
:
'followUpMobile'
,
//
model: 'followUpMobile',
label
:
'随访人员联系电话:'
,
//
label: '随访人员联系电话:',
disabled
:
false
,
//
disabled: false,
placeholder
:
'请输入随访人员联系电话'
,
//
placeholder: '请输入随访人员联系电话',
spanNum
:
12
,
//
spanNum: 12,
maxlength
:
11
,
//
maxlength: 11,
type
:
'tel'
,
//
type: 'tel',
labmsg
:
'次'
,
//
labmsg: '次',
rules
:
[{
required
:
true
,
message
:
'请输入随访人员联系电话'
,
trigger
:
[
'submit'
,
'change'
]},{
validator
:
checkMobile
,
trigger
:
[
'submit'
,
'change'
]
}],
//
rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
},
//
},
{
//
{
formType
:
'date-picker'
,
//
formType: 'date-picker',
className
:
'float-none'
,
//
className: 'float-none',
prop
:
'surveyTime'
,
//
prop: 'surveyTime',
model
:
'surveyTime'
,
//
model: 'surveyTime',
placeholder
:
'请选择'
,
//
placeholder: '请选择',
label
:
'本次调查时间:'
,
//
label: '本次调查时间:',
format
:
'yyyy-MM-dd'
,
//
format: 'yyyy-MM-dd',
valueFormat
:
'yyyy-MM-dd'
,
//
valueFormat: 'yyyy-MM-dd',
dateType
:
'date'
,
//
dateType: 'date',
type
:
'date'
,
//
type: 'date',
rules
:
[{
required
:
true
,
message
:
'请选择本次调查时间'
,
trigger
:
[
'submit'
,
'change'
]}],
//
rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
spanNum
:
12
,
//
spanNum: 12,
},
//
},
]
]
}
}
src/views/followup/record-manage/models/hypertension/hypeDataSourceSymptom.js
浏览文件 @
c4ea5890
...
@@ -4,11 +4,11 @@ export default ($this) => {
...
@@ -4,11 +4,11 @@ export default ($this) => {
return
[
return
[
{
{
formType
:
'checkbox'
,
formType
:
'checkbox'
,
className
:
'obj-form-title
3
'
,
className
:
'obj-form-title'
,
prop
:
'symptom'
,
prop
:
'symptom'
,
model
:
'symptom'
,
model
:
'symptom'
,
label
:
'选择的症状:'
,
label
:
'选择的症状:'
,
linkageRule
:
[{
name
:
'takeHypoglycemicDrugs'
,
value
:
[
'是'
]}],
//
linkageRule: [{name: 'takeHypoglycemicDrugs', value: ['是']}],
disabled
:
false
,
disabled
:
false
,
changeFun
:
(
val
)
=>
{
changeFun
:
(
val
)
=>
{
// console.log(val)
// console.log(val)
...
@@ -28,6 +28,20 @@ export default ($this) => {
...
@@ -28,6 +28,20 @@ export default ($this) => {
],
],
rules
:
[{
required
:
true
,
message
:
'选择的症状'
,
trigger
:
[
'submit'
]}]
rules
:
[{
required
:
true
,
message
:
'选择的症状'
,
trigger
:
[
'submit'
]}]
},
},
{
formType
:
'input'
,
className
:
'obj-form-title4'
,
linkageRule
:
[{
name
:
'symptom'
,
value
:
[
'其他'
]}],
prop
:
'remark'
,
model
:
'remark'
,
disabled
:
false
,
placeholder
:
'请输入其他症状'
,
spanNum
:
12
,
maxlength
:
30
,
type
:
'text'
,
labmsg
:
''
,
rules
:
[{
required
:
true
,
message
:
'请输入其他症状'
,
trigger
:
[
'submit'
,
'change'
]
}]
},
]
]
}
}
src/views/followup/record-manage/patient-scale/stroke.vue
浏览文件 @
c4ea5890
...
@@ -192,35 +192,7 @@
...
@@ -192,35 +192,7 @@
{
name
:
'CheckBody'
,
formObject
:
{
bmi
:
0
,},
showModule
:
true
,
formName
:
'stroke_014'
,
className
:
'obj-form-title'
,
dataSource
:
dataSourceCheckBody
(
this
),
ruleNew
:
true
,
title
:
'五、体格检查(高危人群12个月随访必做)'
},
{
name
:
'CheckBody'
,
formObject
:
{
bmi
:
0
,},
showModule
:
true
,
formName
:
'stroke_014'
,
className
:
'obj-form-title'
,
dataSource
:
dataSourceCheckBody
(
this
),
ruleNew
:
true
,
title
:
'五、体格检查(高危人群12个月随访必做)'
},
{
name
:
'CheckLab'
,
formObject
:
{},
showModule
:
true
,
formName
:
'stroke_015'
,
className
:
'obj-form-title'
,
dataSource
:
dataSourceCheckLab
(
this
),
ruleNew
:
true
,
title
:
'六、实验室检查(高危人群12个月随访必填)'
},
{
name
:
'CheckLab'
,
formObject
:
{},
showModule
:
true
,
formName
:
'stroke_015'
,
className
:
'obj-form-title'
,
dataSource
:
dataSourceCheckLab
(
this
),
ruleNew
:
true
,
title
:
'六、实验室检查(高危人群12个月随访必填)'
},
]
]
// if(this.scaleType=='SCALE0003'){ //脑卒中
// this.addComponentsSourceList = [
// {name: 'BaseInfo0',formObject: {},showModule: true,formName: 'stroke_001',className: 'obj-form-title',dataSource: dataSourceBaseInfo0(this), hideTitle: true, title: '一、量表脑卒中随访人员信息表'},
// {name: 'BaseInfo',formObject: {},showModule: true,formName: 'stroke_002',className: 'obj-form-title',dataSource: dataSourceBaseInfo(this), title: '一、基本信息'},
// {name: 'BaseInfo2',formObject: {},showModule: true,formName: 'stroke_003',className: 'obj-form-title',dataSource: dataSourceBaseInfo2(this), hideTitle: true, title: '一、基本信息'},
// {name: 'LifeStyleGuide',formObject: {},showModule: true,formName: 'stroke_004',className: 'obj-form-title',dataSource: dataSourceLifeStyleGuide(this), title: '二、随访期间生活方式'},
// {name: 'MainSickControl',formObject: {},showModule: true,formName: 'stroke_005',className: 'obj-form-title',dataSource: dataSourceMainSickControl(this), title: '三、随访期间主要病史及控制情况-脑血管病'},
// {name: 'MainSickControl2',formObject: {},showModule: true,formName: 'stroke_006',className: 'obj-form-title',dataSource: dataSourceMainSickControl2(this), hideTitle: true,ruleNew:true, title: '三、随访期间主要病史及控制情况-MRS评分(卒中患者12个月随访必填)'},
// {name: 'MainSickControl3',formObject: {},showModule: true,formName: 'stroke_007',className: 'obj-form-title',dataSource: dataSourceMainSickControl3(this), hideTitle: true, title: '三、随访期间主要病史及控制情况-心脏病'},
// {name: 'MainSickControl4',formObject: {},showModule: true,formName: 'stroke_008',className: 'obj-form-title',dataSource: dataSourceMainSickControl4(this), hideTitle: true, title: '三、随访期间主要病史及控制情况-高血压'},
// {name: 'MainSickControl5',formObject: {},showModule: true,formName: 'stroke_009',className: 'obj-form-title',dataSource: dataSourceMainSickControl5(this), hideTitle: true, title: '三、随访期间主要病史及控制情况-血脂异常'},
// {name: 'MainSickControl6',formObject: {},showModule: true,formName: 'stroke_010',className: 'obj-form-title',dataSource: dataSourceMainSickControl6(this), hideTitle: true, title: '三、随访期间主要病史及控制情况-糖尿病'},
// {name: 'TreatmentSituation',formObject: {},showModule: true,formName: 'stroke_011',className: 'obj-form-title',dataSource: dataSourceTreatmentSituation(this), title: '四、本次随访期间血管病变的外科手术或介入治疗情况'},
// {name: 'TreatmentSituation2',formObject: {},showModule: true,formName: 'stroke_012',className: 'obj-form-title',dataSource: dataSourceTreatmentSituation2(this), hideTitle: true, title: '四、本次随访期间血管病变的外科手术或介入治疗情况-冠状动脉'},
// {name: 'TreatmentSituation3',formObject: {},showModule: true,formName: 'stroke_013',className: 'obj-form-title',dataSource: dataSourceTreatmentSituation3(this), hideTitle: true, title: '四、本次随访期间血管病变的外科手术或介入治疗情况-出血性卒中外科治疗'},
// {name: 'CheckBody',formObject: {bmi: 0,},showModule: true,formName: 'stroke_014',className: 'obj-form-title',dataSource: dataSourceCheckBody(this), ruleNew:true,title: '五、体格检查(高危人群12个月随访必做)'},
// {name: 'CheckLab',formObject: {},showModule: true,formName: 'stroke_015',className: 'obj-form-title',dataSource: dataSourceCheckLab(this),ruleNew:true, title: '六、实验室检查(高危人群12个月随访必填)'},
// ]
// }else if(this.scaleType=='SCALE0001'){ //高血压
// this.addComponentsSourceList = [
// {name: 'BaseInfo0',formObject: {},showModule: true,formName: 'hypertension_001',className: 'obj-form-title',dataSource: hypeDataSourceSymptom(this), hideTitle: true, title: '一、症状'},
// {name: 'BaseInfo0',formObject: {},showModule: true,formName: 'hypertension_002',className: 'obj-form-title',dataSource: hypeDataSourceSign(this), hideTitle: true, title: '二、体征'},
// {name: 'BaseInfo0',formObject: {},showModule: true,formName: 'hypertension_003',className: 'obj-form-title',dataSource: hypeDataSourceLifeMode(this), hideTitle: true, title: '三、生活方式指导'},
// {name: 'BaseInfo0',formObject: {},showModule: true,formName: 'hypertension_004',className: 'obj-form-title',dataSource: hypeDataSourceHelpChecking(this), hideTitle: true, title: '四、辅助检查'},
// {name: 'BaseInfo0',formObject: {},showModule: true,formName: 'hypertension_005',className: 'obj-form-title',dataSource: hypeDataSourceMedicationUse(this), hideTitle: true, title: '五、用药情况'},
// ]
// }else if(this.scaleType=='SCALE0002'){//糖尿病
//
// }
},
},
// 获取白名单域名
// 获取白名单域名
getWhiteDomain
(){
getWhiteDomain
(){
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录