Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
提交
议题看板
打开侧边栏
jingqi.liu
pica.cloud.web-education-admin
提交
b6597e58
提交
b6597e58
编写于
4月 07, 2019
作者:
tao.wu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
no message
上级
03efd269
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
20 行增加
和
18 行删除
+20
-18
set-time-form.vue
src/views/followup/plan-manage/dialog/set-time-form.vue
+14
-16
set-time-node.vue
src/views/followup/plan-manage/dialog/set-time-node.vue
+5
-2
new-plan.vue
src/views/followup/plan-manage/new-plan.vue
+1
-0
未找到文件。
src/views/followup/plan-manage/dialog/set-time-form.vue
浏览文件 @
b6597e58
...
...
@@ -67,14 +67,14 @@
</el-select>
<el-button
plain
class=
"ml20"
@
click=
"goSelectCartoon"
v-if=
"!timeForm.hasSelected"
>
选择健康漫画
</el-button>
<div
class=
"selected-div ml20"
v-if=
"timeForm.hasSelected"
>
<span>
《
{{
comentMsg
.
header_name
}}
》
</span>
<span>
《
{{
timeForm
.
comentMsg
.
header_name
}}
》
</span>
<el-button
type=
"text"
@
click=
"goSelectCartoon"
>
重选
</el-button>
<el-button
type=
"text"
@
click=
"deleteClick"
>
删除
</el-button>
</div>
</div>
</el-form-item>
<div
class=
"tips-contnt"
v-if=
"timeForm.hasSelected"
>
<p
class=
"yellow-font"
>
当前计划中共
{{
t
otalNumber
}}
位居民(微信:
{{
wechatPatientNum
}}
位,短信:
{{
messagePatientNum
}}
位),本次定时推送任务在发送当日预计需要
{{
messagePatientNum
}}
条短信额度(微信推送不消耗额度,建议您让居民关注云鹊健康微信公众号),务必提前确保短信额度的充足。
</p>
<p
class=
"yellow-font"
>
当前计划中共
{{
t
imeForm
.
totalNumber
}}
位居民(微信:
{{
timeForm
.
wechatPatientNum
}}
位,短信:
{{
timeForm
.
messagePatientNum
}}
位),本次定时推送任务在发送当日预计需要
{{
timeForm
.
messagePatientNum
}}
条短信额度(微信推送不消耗额度,建议您让居民关注云鹊健康微信公众号),务必提前确保短信额度的充足。
</p>
<p>
需要更多额度,请前往「云鹊医App-个人中心-啾啾币中心」兑换短信额度后再进行预约,您也可以联系云鹊医客服购买短信额度,客服电话:400-920-8877
</p>
</div>
<el-form-item
label=
"随访登记表"
>
...
...
@@ -113,7 +113,7 @@
callback
();
}
return
{
comentMsg
:
{},
//选择的漫画信息
//
comentMsg: {},//选择的漫画信息
isSelectCartoon
:
false
,
followResourceId
:
''
,
pushDay
:
''
,
...
...
@@ -123,15 +123,13 @@
timeUnit
:
[{
required
:
true
,
message
:
'请添加随访时间'
,
trigger
:
'change'
}],
type
:
[{
required
:
true
,
message
:
'请选择随访方式'
,
trigger
:
'change'
}],
},
totalNumber
:
0
,
wechatPatientNum
:
0
,
messagePatientNum
:
0
//
totalNumber: 0,
//
wechatPatientNum: 0,
//
messagePatientNum: 0
}
},
props
:
{
timeForm
:
{
type
:
Object
,
},
timeForm
:
Object
,
valBegin
:
Boolean
,
markOptions
:
Array
,
followTypeList
:
Array
,
...
...
@@ -150,8 +148,8 @@
}
},
methods
:
{
changeRemindDay
(){
changeRemindDay
(
val
){
console
.
log
(
val
)
},
getNowTime
()
{
const
date
=
new
Date
();
...
...
@@ -175,14 +173,14 @@
this
.
timeForm
.
hasSelected
=
''
;
},
pushConmentMsg
(
val
){
this
.
comentMsg
=
val
console
.
log
(
this
.
patientIdList
)
//
this.comentMsg = val
this
.
timeForm
.
comentMsg
=
val
getPatientNumber
({
patientIdList
:
this
.
patientIdList
}).
then
(
res
=>
{
this
.
wechatPatientNum
=
res
.
data
.
wechatPatientNum
this
.
messagePatientNum
=
res
.
data
.
messagePatientNum
this
.
t
otalNumber
=
this
.
wechatPatientNum
+
this
.
messagePatientNum
this
.
timeForm
.
wechatPatientNum
=
res
.
data
.
wechatPatientNum
this
.
timeForm
.
messagePatientNum
=
res
.
data
.
messagePatientNum
this
.
t
imeForm
.
totalNumber
=
this
.
timeForm
.
wechatPatientNum
+
this
.
timeForm
.
messagePatientNum
})
}
},
...
...
src/views/followup/plan-manage/dialog/set-time-node.vue
浏览文件 @
b6597e58
...
...
@@ -75,8 +75,11 @@
isDisabled
:
false
,
remindDay
:
''
,
pushDay
:
''
,
followResourceId
:
''
followResourceId
:
''
,
comentMsg
:
{},
totalNumber
:
0
,
wechatPatientNum
:
0
,
messagePatientNum
:
0
};
export
default
{
...
...
src/views/followup/plan-manage/new-plan.vue
浏览文件 @
b6597e58
...
...
@@ -181,6 +181,7 @@
this
.
isShowSelectPatient
=
getArguments
[
0
];
const
selectPatients
=
getArguments
[
1
];
// 每次选中获取的人
this
.
hasSelectedList
=
selectPatients
;
this
.
baseInfo
.
patientIdList
=
[];
selectPatients
.
forEach
((
item
)
=>
{
this
.
baseInfo
.
patientIdList
.
push
(
item
.
patientId
);
// 页面中数据存储所有选择的人,没有去重
})
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录