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
提交
156097f0
提交
156097f0
编写于
5月 14, 2019
作者:
Yuanzhao.dai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
未完善居民
上级
09956f09
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
150 行增加
和
2 行删除
+150
-2
not-complete-list.vue
src/views/patients/not-complete/not-complete-list.vue
+150
-2
未找到文件。
src/views/patients/not-complete/not-complete-list.vue
浏览文件 @
156097f0
...
...
@@ -5,13 +5,66 @@
:curmbSecond=
"curmbSecond"
>
</bread-crumb>
<section
class=
"not-complete-content screenSet"
>
<h1>
资料不全居民
</h1>
<h1
class=
"page-title"
>
资料不全居民
</h1>
<p
class=
"tip"
v-if=
"notCompleteList.length"
>
共
<span
class=
"fontGreen"
>
800位
</span>
居民仅通过微信扫码与您绑定,但未完善姓名、手机号等关键信息。提醒居民完善信息后,您将可以对居民进行消息推送和随访计划设置。
<el-button
type=
"primary"
style=
"float: right;"
size=
"small"
@
click=
"sendCompleteMessages"
>
批量提醒
</el-button>
</p>
<el-table
v-if=
"notCompleteList.length"
:data=
"notCompleteList"
style=
"width: 100%;"
>
<el-table-column
type=
"selection"
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"headimgurl"
label=
"头像"
width=
"100"
lign=
"center"
>
<template
slot-scope=
"scope"
>
<img
class=
"user-photo"
:src=
"scope.row.headimgurl"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"wechatUsername"
width=
"200"
label=
"微信昵称"
align=
"center"
>
</el-table-column>
<el-table-column
prop=
"country"
label=
"地区"
align=
"center"
>
</el-table-column>
<el-table-column
prop=
"wechatCreatedTime"
label=
"添加时间"
align=
"center"
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-button
v-if=
"scope.row.isRemind==1"
type=
"text"
@
click=
"sendCompleteMessage(scope.row)"
>
提醒完善信息
</el-button>
<el-button
v-else-if=
"scope.row.isRemind==2"
type=
"text"
style=
"color: #999"
>
提醒已发送
</el-button>
</
template
>
</el-table-column>
</el-table>
<div
v-else
class=
"blank-wrap"
>
<div
class=
"blank-content"
>
<img
src=
"../../../assets/image/no-content1.png"
/>
<p>
暂无资料不全居民
</p>
</div>
</div>
</section>
</section>
</template>
<
script
>
import
BreadCrumb
from
'../../../components/breadcrumb.vue'
export
default
{
name
:
"not-complete"
,
components
:
{
...
...
@@ -21,6 +74,59 @@
return
{
curmbFirst
:
'居民管理'
,
curmbSecond
:
'资料不全居民'
,
notCompleteList
:
[],
//未完善列表
}
},
created
()
{
//const vm = this;
},
mounted
()
{
this
.
getNotComplete
({
pageNo
:
1
,
pageSize
:
10
})
},
methods
:
{
getNotComplete
(
reqData
)
{
const
{
pageNo
,
pageSize
}
=
reqData
this
.
GET
(
`/healths/patients/uncomplate/
${
pageNo
}
/
${
pageSize
}
`
).
then
((
res
)
=>
{
console
.
log
(
res
)
if
(
res
.
code
==
"000000"
)
{
this
.
notCompleteList
=
res
.
data
}
}).
catch
(
function
(
error
)
{
this
.
$message
.
error
(
error
);
});
},
sendCompleteMessage
(
item
)
{
let
params
=
{
qrcodeType
:
1
,
//saas 云鹊医平台
patientId
:
item
.
patientId
,
}
this
.
POST
(
'/healths/patients/remind'
,
params
).
then
((
res
)
=>
{
this
.
$message
({
type
:
'success'
,
message
:
'操作成功!'
});
}).
catch
(
function
(
error
)
{
this
.
$message
.
error
(
error
);
});
},
sendCompleteMessages
(
item
)
{
let
params
=
{
qrcodeType
:
1
,
//saas 云鹊医平台
patientId
:
item
.
patientId
,
}
this
.
POST
(
'/healths/patients/remind'
,
params
).
then
((
res
)
=>
{
this
.
$message
({
type
:
'success'
,
message
:
'操作成功!'
});
}).
catch
(
function
(
error
)
{
this
.
$message
.
error
(
error
);
});
}
}
}
...
...
@@ -29,8 +135,50 @@
<
style
lang=
"scss"
scoped
>
.not-complete-wrap
{
.not-complete-content
{
padding
:
1
0px
;
padding
:
3
0px
;
background
:
#ffffff
;
.tip
{
font-size
:
12px
;
padding
:
30px
0
;
line-height
:
32px
;
}
.page-title
{
font-size
:
20px
;
color
:
#F1E2F3
D
;
padding-bottom
:
20px
;
border-bottom
:
1px
solid
#efefef
;
}
.blank-wrap
{
@media
screen
and
(
min-width
:
1240px
)
and
(
max-width
:
1545px
){
height
:
300px
;
}
@media
screen
and
(
min-width
:
1545px
)
and
(
max-width
:
1600px
){
height
:
500px
;
}
@media
screen
and
(
min-width
:
1600px
){
height
:
600px
;
}
.blank-content
{
text-align
:
center
;
img
{
width
:
100px
;
}
p
{
font-size
:
20px
;
color
:
#999
;
}
}
}
.user-photo
{
border-radius
:
50%
;
width
:
40px
;
}
}
}
.el-button--text
{
color
:
#449284
;
}
.fontGreen
{
color
:
#449284
;
}
</
style
>
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录