Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-admin-consultation
提交
8c778be6
提交
8c778be6
编写于
7月 27, 2021
作者:
fusheng.liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
问诊初始
上级
459cdc41
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
127 行增加
和
19 行删除
+127
-19
inquirylist.vue
src/components/common/inquirylist.vue
+127
-19
未找到文件。
src/components/common/inquirylist.vue
浏览文件 @
8c778be6
<
template
>
<div
class=
"inquirylist"
>
<el-row>
<el-col
:span=
"8"
v-for=
"(o, index) in 1 "
:key=
"o"
:offset=
"index > 0
? 2 : 0"
>
<el-col
:span=
"8"
:key=
"o"
:offset=
"index > 0
? 2 : 0"
>
<el-card
shadow=
"always"
:body-style=
"
{ padding: '0px' }">
<div
class=
"inquiryname"
>
<div
class=
"inquiryinfo"
>
<div
class=
"infone"
>
问诊单
2520
<span>
(内科
)
</span></div>
<div
class=
"talk"
>
语音问诊
</div>
<div
class=
"time"
>
{{
time
}}
</div>
<div
class=
"infone"
>
问诊单
{{
inquiry
.
listnumber
}}
<span
class=
"department"
>
(
{{
inquiry
.
department
}}
)
</span></div>
<div
class=
"talk"
>
{{
inquiry
.
voice
}}
</div>
<div
class=
"time"
>
{{
inquiry
.
time
}}
</div>
</div>
<div
class=
"inquirystatus"
>
<span
class=
"status"
>
状态:
{{
inquiry
.
status
}}
</span>
<div
class=
"inquiryimg"
v-if=
"inquiry.status==''"
>
图片
</div>
<div
class=
"inquirytime"
v-if=
"inquiry.
time
"
><span></span>
00:00:15
</div>
<div
class=
"inquirytime"
v-if=
"inquiry.
countdown
"
><span></span>
00:00:15
</div>
</div>
</div>
<div
class=
"inquirydoctor"
>
<div
class=
"visitingdoctor"
></div>
<div
class=
"helpdoctor"
>
</div>
<div
class=
"visitingdoctor"
>
<div
class=
"onedoctor"
><span>
img
</span>
接诊医生
<el-tag
v-if=
"inquiry.online"
size=
"mini"
type=
"danger"
effect=
"dark"
>
离线
</el-tag></div>
<div
class=
"onedoctorname"
>
{{
inquiry
.
visitingdoctor
}}
</div>
<div
class=
"onedoctornum"
>
<span>
{{
inquiry
.
visitingdoctornum
}}
</span>
<span
@
click=
"calldoc()"
class=
"calldoctor"
><span
v-if=
"calldoctor"
>
呼叫医生
</span>
<span
v-else
>
呼叫中...
</span></span>
</div>
</div>
<div
class=
"helpdoctor"
>
<div
class=
"onedoctor"
><span>
img
</span>
接诊医生
<el-tag
v-if=
"inquiry.online"
size=
"mini"
type=
"danger"
effect=
"dark"
>
离线
</el-tag></div>
<div
class=
"onedoctorname"
>
{{
inquiry
.
helpdoctor
}}
</div>
<div
class=
"onedoctornum"
>
<span>
{{
inquiry
.
helpdoctornum
}}
</span>
<span
@
click=
"calldoc()"
class=
"calldoctor"
><span
v-if=
"calldoctor"
>
呼叫医生
</span>
<span
v-else
>
呼叫中...
</span></span>
</div>
</div>
</div>
<div
class=
"inquiryroom"
>
<span
class=
"goroom"
>
进入诊室
</span>
...
...
@@ -34,18 +42,29 @@
export
default
{
data
()
{
return
{
time
:
new
Date
().
getFullYear
()
+
'-07-14 14:00-15:00'
,
inquiry
:{
time
:
new
Date
().
getFullYear
()
+
'-07-14 14:00-15:00'
,
status
:
'异常'
,
time
:
'1'
}
department
:
'内科'
,
listnumber
:
'3520'
,
countdown
:
'1'
,
online
:
true
,
voice
:
'语音问诊'
,
visitingdoctor
:
'孙四百'
,
helpdoctor
:
'孙四百'
,
visitingdoctornum
:
'111111111111'
,
helpdoctornum
:
'1111111111111'
},
calldoctor
:
true
};
},
created
()
{
// vm = this;
},
methods
:
{
calldoc
()
{
this
.
calldoctor
=
false
}
}
}
</
script
>
...
...
@@ -53,16 +72,20 @@ export default {
<
style
lang=
"scss"
scoped
>
.inquirylist
{
display
:
flex
;
flex-basis
:
30%
;
width
:
30%
;
margin-bottom
:
10px
;
margin
:
20px
30px
0px
;
padding
:
10px
5px
;
background
:
#fff
;
//
background: #fff;
overflow
:
hidden
!
important
;
.el-row
{
flex-basis
:
31%
;
// flex-basis: 31%;
width
:
100%
;
height
:
100%
;
.el-col
{
width
:
100%
;
height
:
2
95
px
;
height
:
2
60
px
;
.el-card
{
height
:
100%
;
}
...
...
@@ -85,6 +108,8 @@ export default {
>
span
{
font-size
:
14px
;
color
:
#b2aeae
;
display
:
inline-block
;
margin-left
:
5px
;
}
}
.talk
{
...
...
@@ -118,12 +143,95 @@ export default {
}
}
.inquirydoctor
{
height
:
1
40
px
;
height
:
1
15
px
;
border-bottom
:
rgb
(
209
,
208
,
208
)
1px
solid
;
display
:
flex
;
.visitingdoctor
{
flex-basis
:
50%
;
padding
:
5px
2px
7px
7px
;
border-right
:
rgb
(
209
,
208
,
208
)
1px
solid
;
.el-tag
{
width
:
30px
;
height
:
14px
;
font-size
:
10px
!
important
;
line-height
:
12px
;
padding-left
:
2px
;
}
.el-tag--dark.el-tag--danger
{
background-color
:
rgb
(
208
,
2
,
27
);
border-color
:
rgb
(
208
,
2
,
27
);
}
.onedoctor
{
font-size
:
14px
;
color
:
#b2aeae
;
margin
:
4px
;
margin-top
:
10px
;
}
.onedoctorname
{
margin-top
:
18px
;
font-size
:
14px
;
margin-bottom
:
7px
;
}
.onedoctornum
{
font-size
:
14px
;
.calldoctor
{
display
:
inline-block
;
border-radius
:
12px
;
border
:
1px
solid
rgb
(
129
,
178
,
234
);
font-size
:
12px
;
color
:
rgb
(
129
,
178
,
234
);
width
:
59px
;
height
:
20px
;
padding-left
:
4px
;
margin-left
:
13px
;
cursor
:pointer
;
}
}
}
.helpdoctor
{
flex-basis
:
50%
;
padding
:
5px
2px
7px
7px
;
.el-tag
{
width
:
30px
;
height
:
14px
;
font-size
:
10px
!
important
;
line-height
:
12px
;
padding-left
:
2px
;
}
.el-tag--dark.el-tag--danger
{
background-color
:
rgb
(
208
,
2
,
27
);
border-color
:
rgb
(
208
,
2
,
27
);
}
.onedoctor
{
font-size
:
14px
;
color
:
#b2aeae
;
margin
:
4px
;
margin-top
:
10px
;
}
.onedoctorname
{
margin-top
:
18px
;
font-size
:
14px
;
margin-bottom
:
7px
;
}
.onedoctornum
{
font-size
:
14px
;
.calldoctor
{
display
:
inline-block
;
border-radius
:
12px
;
border
:
1px
solid
rgb
(
129
,
178
,
234
);
font-size
:
12px
;
color
:
rgb
(
129
,
178
,
234
);
width
:
59px
;
height
:
20px
;
padding-left
:
4px
;
margin-left
:
13px
;
cursor
:pointer
;
}
}
}
}
.inquiryroom
{
height
:
5
5px
;
height
:
4
5px
;
display
:
flex
;
.goroom
{
display
:
inline-block
;
...
...
@@ -131,7 +239,7 @@ export default {
flex-basis
:
50%
;
text-align
:
center
;
height
:
100%
;
line-height
:
5
5px
;
line-height
:
4
5px
;
border-right
:
rgb
(
209
,
208
,
208
)
1px
solid
;
}
.suggest
{
...
...
@@ -141,7 +249,7 @@ export default {
display
:
inline-block
;
text-align
:
center
;
height
:
100%
;
line-height
:
5
5px
;
line-height
:
4
5px
;
}
}
}
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录