Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
7958e5f3
提交
7958e5f3
编写于
3月 15, 2019
作者:
Yuanzhao.dai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
结束随访
上级
28f34bd7
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
88 行增加
和
5 行删除
+88
-5
finish-followup.vue
src/views/followup/plan-manage/dialog/finish-followup.vue
+72
-0
resident-detail.vue
src/views/followup/plan-manage/resident-detail.vue
+16
-5
未找到文件。
src/views/followup/plan-manage/dialog/finish-followup.vue
0 → 100644
浏览文件 @
7958e5f3
<
template
>
<div
class=
"finish-followup"
v-if=
"showThisPage"
>
<el-dialog
title=
"变更计划"
:visible
.
sync=
"showFinishFollowup"
v-if=
"showThisPage"
:before-close=
"clickClose"
center
>
<div
class=
"finish-content"
>
<div
class=
"content-div"
>
<div
class=
"c-title"
>
居民:
</div>
<div
class=
"c-content"
>
戴佳康;戴佳康;戴佳康;戴佳康等20人
</div>
</div>
<div
class=
"content-div"
>
<div
class=
"c-title"
>
结束原因:
</div>
<div
class=
"c-content"
></div>
</div>
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
class=
"button-green"
@
click=
"clickClose"
type=
"primary"
>
取 消
</el-button>
<el-button
class=
"button-white"
@
click=
"clickClose"
plain
>
确 定
</el-button>
</span>
</el-dialog>
</div>
</
template
>
<
script
>
export
default
{
name
:
"finish-followup"
,
props
:
{
showThisPage
:
{
//是否显示model
type
:
Boolean
,
default
:
function
()
{
return
false
;
}
},
planChangeData
:
{
type
:
Object
,
default
:
function
()
{
return
{};
}
},
groupOption
:
{
type
:
Array
,
default
:
function
()
{
return
[];
}
},
planOption
:
{
type
:
Array
,
default
:
function
()
{
return
[];
}
},
},
data
()
{
return
{
showFinishFollowup
:
true
}
},
methods
:
{
clickClose
()
{
this
.
$emit
(
'closeFinishFollowup'
,
false
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'../../../../style/followup/followup-common'
;
@import
'../../../../style/followup/element-reset.css'
;
</
style
>
src/views/followup/plan-manage/resident-detail.vue
浏览文件 @
7958e5f3
...
@@ -11,13 +11,13 @@
...
@@ -11,13 +11,13 @@
<div
class=
"title"
><p>
基本信息
</p></div>
<div
class=
"title"
><p>
基本信息
</p></div>
<div
class=
"h-btn"
>
<div
class=
"h-btn"
>
<el-button
class=
"button-white"
plain
@
click=
"changePlan"
>
计划变更
</el-button>
<el-button
class=
"button-white"
plain
@
click=
"changePlan"
>
计划变更
</el-button>
<el-button
class=
"button-white"
plain
>
结束随访
</el-button>
<el-button
class=
"button-white"
plain
@
click=
"finishFollowup"
>
结束随访
</el-button>
</div>
</div>
</div>
</div>
<div
class=
"base-info"
>
<div
class=
"base-info"
>
<div
class=
"resident-info base-content"
>
<div
class=
"resident-info base-content"
>
<div
class=
"content-div"
>
<div
class=
"content-div"
>
<div
class=
"c-title"
>
随访开始时间
:
</div>
<div
class=
"c-title"
>
姓名
:
</div>
<div
class=
"c-content"
>
戴佳康
</div>
<div
class=
"c-content"
>
戴佳康
</div>
</div>
</div>
<div
class=
"content-div "
>
<div
class=
"content-div "
>
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
</div>
</div>
</div>
</div>
<change-plan
:showThisPage=
"showChangePlan"
@
closeChangePlan=
"closeChangePlan"
></change-plan>
<change-plan
:showThisPage=
"showChangePlan"
@
closeChangePlan=
"closeChangePlan"
></change-plan>
<finish-followup
:showThisPage=
"showFinishFollowup"
@
closeFinishFollowup=
"closeFinishFollowup"
></finish-followup>
</div>
</div>
</
template
>
</
template
>
...
@@ -106,11 +107,14 @@
...
@@ -106,11 +107,14 @@
import
BreadCrumb
from
'@/components/breadcrumb'
;
import
BreadCrumb
from
'@/components/breadcrumb'
;
//变更计划dialog
//变更计划dialog
import
ChangePlan
from
'@/views/followup/plan-manage/dialog/change-plan'
;
import
ChangePlan
from
'@/views/followup/plan-manage/dialog/change-plan'
;
//结束随访dialog
import
FinishFollowup
from
'@/views/followup/plan-manage/dialog/finish-followup'
;
export
default
{
export
default
{
name
:
"resident-detail"
,
name
:
"resident-detail"
,
components
:
{
components
:
{
BreadCrumb
,
BreadCrumb
,
ChangePlan
ChangePlan
,
FinishFollowup
,
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -122,6 +126,7 @@
...
@@ -122,6 +126,7 @@
/*面包屑配置*/
/*面包屑配置*/
timeNodes
:
0
,
//时间节点
timeNodes
:
0
,
//时间节点
showChangePlan
:
false
,
//是否展示变更计划
showChangePlan
:
false
,
//是否展示变更计划
showFinishFollowup
:
false
,
//是否展示结束随访
}
}
},
},
methods
:
{
methods
:
{
...
@@ -130,7 +135,13 @@
...
@@ -130,7 +135,13 @@
},
},
closeChangePlan
(
isShow
)
{
closeChangePlan
(
isShow
)
{
this
.
showChangePlan
=
isShow
this
.
showChangePlan
=
isShow
}
},
finishFollowup
()
{
this
.
showFinishFollowup
=
true
;
},
closeFinishFollowup
(
isShow
)
{
this
.
showFinishFollowup
=
isShow
},
}
}
}
}
</
script
>
</
script
>
...
@@ -155,7 +166,7 @@
...
@@ -155,7 +166,7 @@
flex-direction
:
row
;
flex-direction
:
row
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
justify-content
:
space-between
;
justify-content
:
space-between
;
line-height
:
35px
;
padding
:
10px
0
;
.content-div
{
.content-div
{
.c-title
{
.c-title
{
width
:
115px
;
width
:
115px
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录