Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
6c2a1552
提交
6c2a1552
编写于
6月 12, 2019
作者:
hujun
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev-patients-20190513' into 'release-0612'
Dev patients 20190513 See merge request !30
上级
fbf56730
06d11c35
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
65 行增加
和
5 行删除
+65
-5
labels-detail.vue
src/views/patients/labels-manage/labels-detail.vue
+17
-0
patient-detail.vue
src/views/patients/mypatients-manage/patient-detail.vue
+8
-2
patients-list.vue
src/views/patients/mypatients-manage/patients-list.vue
+6
-1
batch-import.vue
src/views/patients/new-manage/components/batch-import.vue
+20
-1
not-complete-list.vue
src/views/patients/not-complete/not-complete-list.vue
+14
-1
未找到文件。
src/views/patients/labels-manage/labels-detail.vue
浏览文件 @
6c2a1552
...
...
@@ -242,6 +242,23 @@
// this.patientIdList = data.data.patientIdList;
let
list
=
data
.
data
.
patientListsByLabelModels
;
if
(
list
&&
list
.
length
>
0
){
list
=
list
.
map
(
item
=>
{
if
(
!
item
.
nickname
){
item
.
nickname
=
'-'
;
};
if
(
!
item
.
sexStr
){
item
.
sexStr
=
'-'
;
};
if
(
item
.
patientAge
||
item
.
patientAge
==
0
){
// 直接显示
}
else
{
item
.
patientAge
=
'-'
;
};
if
(
!
item
.
patientTypeGroup
){
item
.
patientTypeGroup
=
'-'
;
}
return
item
;
})
this
.
searchData
.
tableData
=
list
;
}
else
{
this
.
searchData
.
tableData
=
[];
...
...
src/views/patients/mypatients-manage/patient-detail.vue
浏览文件 @
6c2a1552
...
...
@@ -80,7 +80,7 @@
<
/div
>
<
/el-tab-pane
>
<
el
-
tab
-
pane
label
=
"健康记录"
name
=
"second"
>
<
div
class
=
"health-record-wrap"
>
<
div
class
=
"health-record-wrap"
v
-
show
=
"recordList.length"
>
<
div
class
=
"health-record-list"
v
-
show
=
"recordList.length"
v
-
infinite
-
scroll
=
"loadMore"
...
...
@@ -114,7 +114,7 @@
<
/div
>
<
/div
>
<
div
class
=
"no-record-content"
v
-
if
=
"!recordList.length"
>
<
div
>
<
div
class
=
"no-record-info"
>
<
img
src
=
"../../../assets/image/no-content1.png"
/>
<
p
>
暂无随访记录或您没有权限访问
<
/p
>
<
/div
>
...
...
@@ -535,6 +535,12 @@
}
text
-
align
:
center
;
padding
:
50
px
0
60
px
;
.
no
-
record
-
info
{
position
:
absolute
;
top
:
50
%
;
left
:
50
%
;
transform
:
translate
(
-
50
%
,
-
60
%
);
}
img
{
width
:
120
px
;
}
...
...
src/views/patients/mypatients-manage/patients-list.vue
浏览文件 @
6c2a1552
...
...
@@ -78,7 +78,8 @@
align=
"center"
>
<template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.sex==1"
>
男
</span>
<span
v-if=
"scope.row.sex==2"
>
女
</span>
<span
v-else-if=
"scope.row.sex==2"
>
女
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
...
...
@@ -86,6 +87,10 @@
label=
"年龄"
width=
"80"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.age || (scope.row.age==0)"
>
{{
scope
.
row
.
age
}}
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"showLabelName"
...
...
src/views/patients/new-manage/components/batch-import.vue
浏览文件 @
6c2a1552
...
...
@@ -253,8 +253,27 @@
let
data
=
res
.
data
.
importRecordsModelList
;
if
(
data
&&
data
.
length
>
0
){
data
=
data
.
map
(
item
=>
{
if
(
!
item
.
fileName
){
item
.
fileName
=
'-'
;
}
if
(
!
item
.
uploadTime
)
{
item
.
uploadTime
=
'-'
;
}
if
(
item
.
insertCount
||
item
.
insertCount
==
0
)
{
// 直接显示
}
else
{
item
.
insertCount
=
'-'
;
}
if
(
item
.
updateCount
||
item
.
updateCount
==
0
)
{
// 直接显示
}
else
{
item
.
updateCount
=
'-'
;
}
if
(
!
item
.
status
)
{
item
.
status
=
'-'
;
}
if
(
!
item
.
reason
)
{
item
.
reason
=
'-'
item
.
reason
=
'-'
;
}
return
item
;
});
...
...
src/views/patients/not-complete/not-complete-list.vue
浏览文件 @
6c2a1552
...
...
@@ -26,7 +26,8 @@
width=
"100"
lign=
"center"
>
<template
slot-scope=
"scope"
>
<img
class=
"user-photo"
:src=
"scope.row.headimgurl"
/>
<img
v-if=
"scope.row.headimgurl"
class=
"user-photo"
:src=
"scope.row.headimgurl"
/>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
...
...
@@ -34,16 +35,28 @@
width=
"200"
label=
"微信昵称"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.wechatUsername"
>
{{
scope
.
row
.
wechatUsername
}}
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"country"
label=
"地区"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.country"
>
{{
scope
.
row
.
country
}}
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"wechatCreatedTime"
label=
"添加时间"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.wechatCreatedTime"
>
{{
scope
.
row
.
wechatCreatedTime
}}
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录