Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
32b3552e
提交
32b3552e
编写于
3月 20, 2019
作者:
Yuanzhao.dai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
计划详情
上级
afd4a0b1
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
26 行增加
和
10 行删除
+26
-10
planManage.js
src/store/modules/followup/planManage.js
+5
-1
followapis.js
src/utils/followup/followapis.js
+7
-0
finish-followup.vue
src/views/followup/plan-manage/dialog/finish-followup.vue
+0
-3
plan-list.vue
src/views/followup/plan-manage/plan-list.vue
+3
-1
resident-list.vue
src/views/followup/plan-manage/resident-list.vue
+11
-5
未找到文件。
src/store/modules/followup/planManage.js
浏览文件 @
32b3552e
...
...
@@ -9,7 +9,8 @@ export default {
total
:
null
,
//总数
},
groupList
:
[],
//分组列表
residentDetail
:
{},
//居民详情
residentDetail
:
{},
//居民详情,
planDetail
:
{},
// 计划详情页
},
mutations
:
{
...
...
@@ -19,6 +20,9 @@ export default {
GET_GROUP_LIST
(
state
,
payload
)
{
state
.
groupList
=
payload
.
labelDtoList
},
GET_RESIDENT_DETAIL
(
state
,
payload
)
{
state
.
residentDetail
=
payload
},
GET_RESIDENT_DETAIL
(
state
,
payload
)
{
state
.
residentDetail
=
payload
}
...
...
src/utils/followup/followapis.js
浏览文件 @
32b3552e
...
...
@@ -14,6 +14,13 @@ const planManageApi = [
name
:
'getResidentList'
,
description
:
'获取居民列表'
,
},
{
url
:
'/followup/plans/detail/'
,
method
:
'get'
,
params
:
'params'
,
name
:
'getPlanDetails'
,
description
:
'获取计划详情'
,
},
{
url
:
'/followup/planPatient/group'
,
method
:
'get'
,
...
...
src/views/followup/plan-manage/dialog/finish-followup.vue
浏览文件 @
32b3552e
...
...
@@ -37,9 +37,6 @@
<
script
>
export
default
{
name
:
"finish-followup"
,
components
:
{
customTextarea
},
props
:
{
showThisPage
:
{
//是否显示model
type
:
Boolean
,
...
...
src/views/followup/plan-manage/plan-list.vue
浏览文件 @
32b3552e
...
...
@@ -111,7 +111,9 @@
visitDetail
(
row
){
this
.
dialogDetailShow
=
true
;
},
visitRow
(
row
){},
visitRow
(
row
){
this
.
$router
.
push
({
path
:
'/followup/plan-manage/resident-list'
,
query
:
{
planId
:
'1'
}})
},
changeRow
(
row
){
// this.statusForm = row;
// this.dialogFormVisible = true;
...
...
src/views/followup/plan-manage/resident-list.vue
浏览文件 @
32b3552e
...
...
@@ -153,7 +153,9 @@
},
mounted
()
{
this
.
getResidentList
();
this
.
getResidentList
({
planId
:
this
.
$route
.
query
.
planId
});
this
.
getGroupList
();
//获取分组列表
},
computed
:
{
...
...
@@ -168,14 +170,16 @@
this
.
getResidentList
({
pageSize
,
...
this
.
searchData
,
status
:
this
.
status
status
:
this
.
status
,
planId
:
this
.
$route
.
query
.
planId
})
},
handleCurrentChangePre
(
pageNum
)
{
this
.
getResidentList
({
pageNum
,
...
this
.
searchData
,
status
:
this
.
status
status
:
this
.
status
,
planId
:
this
.
$route
.
query
.
planId
})
},
goPatientDetail
(
patientId
,
planId
)
{
//居民详情页
...
...
@@ -185,7 +189,8 @@
searchResidentList
()
{
//查询居民列表
this
.
getResidentList
({
...
this
.
searchData
,
status
:
this
.
status
status
:
this
.
status
,
planId
:
this
.
$route
.
query
.
planId
})
},
resetSearchData
(
formName
)
{
...
...
@@ -208,7 +213,8 @@
status
(
val
)
{
this
.
getResidentList
({
status
:
val
,
...
this
.
searchData
...
this
.
searchData
,
planId
:
this
.
$route
.
query
.
planId
})
}
}
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录