Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
296c9e0d
提交
296c9e0d
编写于
4月 29, 2019
作者:
yi.li
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
糖尿病量表添加
上级
108e1d40
变更
7
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
615 行增加
和
0 行删除
+615
-0
form-template.vue
src/views/followup/record-manage/form-template.vue
+4
-0
diabetesSourseAuxiliary.js
.../record-manage/models/diabetes/diabetesSourseAuxiliary.js
+63
-0
diabetesSourseLifeMode.js
...p/record-manage/models/diabetes/diabetesSourseLifeMode.js
+63
-0
diabetesSourseOther.js
...owup/record-manage/models/diabetes/diabetesSourseOther.js
+63
-0
diabetesSourseSign.js
...lowup/record-manage/models/diabetes/diabetesSourseSign.js
+63
-0
diabetesSourseSymptom.js
...up/record-manage/models/diabetes/diabetesSourseSymptom.js
+47
-0
diabetes.vue
src/views/followup/record-manage/patient-scale/diabetes.vue
+312
-0
未找到文件。
src/views/followup/record-manage/form-template.vue
浏览文件 @
296c9e0d
...
@@ -31,6 +31,8 @@
...
@@ -31,6 +31,8 @@
<stroke
v-if=
"scaleNo=='SCALE0003'"
: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>
<hypertension
v-if=
"scaleNo=='SCALE0001'"
:showBtn=
"showBtn"
:scaleType=
"scaleNo"
:checkStart=
"checkStart"
@
checkEnd=
"checkEnd"
:saveWay=
"saveWay"
></hypertension>
<!--糖尿病-->
<diabetes
v-if=
"scaleNo=='SCALE0002'"
:showBtn=
"showBtn"
:scaleType=
"scaleNo"
:checkStart=
"checkStart"
@
checkEnd=
"checkEnd"
:saveWay=
"saveWay"
></diabetes>
</div>
</div>
...
@@ -45,6 +47,7 @@
...
@@ -45,6 +47,7 @@
// 脑卒中
// 脑卒中
import
stroke
from
'./patient-scale/stroke'
import
stroke
from
'./patient-scale/stroke'
import
hypertension
from
'./patient-scale/hypertension'
import
hypertension
from
'./patient-scale/hypertension'
import
diabetes
from
'./patient-scale/diabetes'
export
default
{
export
default
{
data
(){
data
(){
return
{
return
{
...
@@ -61,6 +64,7 @@
...
@@ -61,6 +64,7 @@
stroke
,
stroke
,
hypertension
,
hypertension
,
BreadCrumb
,
BreadCrumb
,
diabetes
,
},
},
methods
:
{
methods
:
{
formSubmit
(
val
){
formSubmit
(
val
){
...
...
src/views/followup/record-manage/models/diabetes/diabetesSourseAuxiliary.js
0 → 100644
浏览文件 @
296c9e0d
import
{
checkMobile
}
from
'@/utils/followup/followupUtils/checkField'
;
export
default
(
$this
)
=>
{
return
[
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpOrgName',
// model: 'followUpOrgName',
// label: '随访单位名称:',
// disabled: false,
// placeholder: '请输入随访单位名称',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpUser',
// model: 'followUpUser',
// label: '随访人员姓名:',
// disabled: false,
// placeholder: '请输入随访人员姓名',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpMobile',
// model: 'followUpMobile',
// label: '随访人员联系电话:',
// disabled: false,
// placeholder: '请输入随访人员联系电话',
// spanNum: 12,
// maxlength: 11,
// type: 'tel',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
// },
// {
// formType: 'date-picker',
// className: 'float-none',
// prop: 'surveyTime',
// model: 'surveyTime',
// placeholder: '请选择',
// label: '本次调查时间:',
// format: 'yyyy-MM-dd',
// valueFormat: 'yyyy-MM-dd',
// dateType: 'date',
// type: 'date',
// rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
// spanNum: 12,
// },
]
}
src/views/followup/record-manage/models/diabetes/diabetesSourseLifeMode.js
0 → 100644
浏览文件 @
296c9e0d
import
{
checkMobile
}
from
'@/utils/followup/followupUtils/checkField'
;
export
default
(
$this
)
=>
{
return
[
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpOrgName',
// model: 'followUpOrgName',
// label: '随访单位名称:',
// disabled: false,
// placeholder: '请输入随访单位名称',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpUser',
// model: 'followUpUser',
// label: '随访人员姓名:',
// disabled: false,
// placeholder: '请输入随访人员姓名',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpMobile',
// model: 'followUpMobile',
// label: '随访人员联系电话:',
// disabled: false,
// placeholder: '请输入随访人员联系电话',
// spanNum: 12,
// maxlength: 11,
// type: 'tel',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
// },
// {
// formType: 'date-picker',
// className: 'float-none',
// prop: 'surveyTime',
// model: 'surveyTime',
// placeholder: '请选择',
// label: '本次调查时间:',
// format: 'yyyy-MM-dd',
// valueFormat: 'yyyy-MM-dd',
// dateType: 'date',
// type: 'date',
// rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
// spanNum: 12,
// },
]
}
src/views/followup/record-manage/models/diabetes/diabetesSourseOther.js
0 → 100644
浏览文件 @
296c9e0d
import
{
checkMobile
}
from
'@/utils/followup/followupUtils/checkField'
;
export
default
(
$this
)
=>
{
return
[
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpOrgName',
// model: 'followUpOrgName',
// label: '随访单位名称:',
// disabled: false,
// placeholder: '请输入随访单位名称',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpUser',
// model: 'followUpUser',
// label: '随访人员姓名:',
// disabled: false,
// placeholder: '请输入随访人员姓名',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpMobile',
// model: 'followUpMobile',
// label: '随访人员联系电话:',
// disabled: false,
// placeholder: '请输入随访人员联系电话',
// spanNum: 12,
// maxlength: 11,
// type: 'tel',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
// },
// {
// formType: 'date-picker',
// className: 'float-none',
// prop: 'surveyTime',
// model: 'surveyTime',
// placeholder: '请选择',
// label: '本次调查时间:',
// format: 'yyyy-MM-dd',
// valueFormat: 'yyyy-MM-dd',
// dateType: 'date',
// type: 'date',
// rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
// spanNum: 12,
// },
]
}
src/views/followup/record-manage/models/diabetes/diabetesSourseSign.js
0 → 100644
浏览文件 @
296c9e0d
import
{
checkMobile
}
from
'@/utils/followup/followupUtils/checkField'
;
export
default
(
$this
)
=>
{
return
[
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpOrgName',
// model: 'followUpOrgName',
// label: '随访单位名称:',
// disabled: false,
// placeholder: '请输入随访单位名称',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访单位名称', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpUser',
// model: 'followUpUser',
// label: '随访人员姓名:',
// disabled: false,
// placeholder: '请输入随访人员姓名',
// spanNum: 12,
// maxlength: 30,
// type: 'text',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员姓名', trigger: ['submit','change']}],
// },
// {
// formType: 'input',
// className: 'float-none',
// prop: 'followUpMobile',
// model: 'followUpMobile',
// label: '随访人员联系电话:',
// disabled: false,
// placeholder: '请输入随访人员联系电话',
// spanNum: 12,
// maxlength: 11,
// type: 'tel',
// labmsg: '次',
// rules: [{required: true, message: '请输入随访人员联系电话', trigger: ['submit','change']},{ validator: checkMobile , trigger: ['submit','change'] }],
// },
// {
// formType: 'date-picker',
// className: 'float-none',
// prop: 'surveyTime',
// model: 'surveyTime',
// placeholder: '请选择',
// label: '本次调查时间:',
// format: 'yyyy-MM-dd',
// valueFormat: 'yyyy-MM-dd',
// dateType: 'date',
// type: 'date',
// rules: [{required: true, message: '请选择本次调查时间', trigger: ['submit','change']}],
// spanNum: 12,
// },
]
}
src/views/followup/record-manage/models/diabetes/diabetesSourseSymptom.js
0 → 100644
浏览文件 @
296c9e0d
import
{
checkMobile
}
from
'@/utils/followup/followupUtils/checkField'
;
export
default
(
$this
)
=>
{
return
[
{
formType
:
'checkbox'
,
className
:
'obj-form-title'
,
prop
:
'symptom'
,
model
:
'symptom'
,
label
:
'选择的症状:'
,
// linkageRule: [{name: 'takeHypoglycemicDrugs', value: ['是']}],
disabled
:
false
,
changeFun
:
(
val
)
=>
{
// console.log(val)
},
spanNum
:
24
,
options
:
[
{
label
:
'无症状'
,
value
:
'无症状'
,
disabled
:
false
},
{
label
:
'多饮'
,
value
:
'多饮'
,
disabled
:
false
},
{
label
:
'多食'
,
value
:
'多食'
,
disabled
:
false
},
{
label
:
'多尿'
,
value
:
'多尿'
,
disabled
:
false
},
{
label
:
'视力模糊'
,
value
:
'视力模糊'
,
disabled
:
false
},
{
label
:
'感染'
,
value
:
'感染'
,
disabled
:
false
},
{
label
:
'手脚麻木'
,
value
:
'手脚麻木'
,
disabled
:
false
},
{
label
:
'下肢浮肿'
,
value
:
'下肢浮肿'
,
disabled
:
false
},
{
label
:
'体重明显下降'
,
value
:
'体重明显下降'
,
disabled
:
false
},
{
label
:
'其他'
,
value
:
'其他'
,
disabled
:
false
},
],
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/diabetes.vue
0 → 100644
浏览文件 @
296c9e0d
此差异已折叠。
点击以展开。
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录