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
提交
9c470b18
提交
9c470b18
编写于
4月 09, 2021
作者:
huangwensu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
样式修改
上级
83334354
变更
3
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
89 行增加
和
203 行删除
+89
-203
diagnosis-im.vue
src/views/IM/diagnosis-admin/diagnosis-im.vue
+37
-37
diagnosis-list.vue
src/views/IM/diagnosis-admin/diagnosis-list.vue
+49
-49
im.scss
src/views/IM/diagnosis-admin/im.scss
+3
-117
未找到文件。
src/views/IM/diagnosis-admin/diagnosis-im.vue
浏览文件 @
9c470b18
...
@@ -503,40 +503,40 @@ export default {
...
@@ -503,40 +503,40 @@ export default {
}
}
}
}
if
(
msg
.
type
.
toLowerCase
()
==
"custom"
)
{
if
(
msg
.
type
.
toLowerCase
()
==
"custom"
)
{
content
=
JSON
.
parse
(
msg
.
content
)
;
content
=
JSON
.
parse
(
msg
.
content
)
text
=
content
.
content
;
text
=
content
.
content
if
(
content
.
bizType
==
-
1
)
{
// 系统消息:消息由于违规未发送成功(可以不处理)
if
(
content
.
bizType
==
-
1
)
{
// 系统消息:消息由于违规未发送成功(可以不处理)
showType
=
-
1
;
showType
=
-
1
text
=
content
.
content
;
text
=
content
.
content
}
else
if
(
content
.
bizType
==
18
)
{
// PDF
}
else
if
(
content
.
bizType
==
18
)
{
// PDF
showType
=
3
;
showType
=
3
text
=
content
.
name
;
text
=
content
.
name
size
=
content
.
size
;
size
=
content
.
size
url
=
content
.
url
;
url
=
content
.
url
}
else
if
(
content
.
bizType
==
19
)
{
// 链接
}
else
if
(
content
.
bizType
==
19
)
{
// 链接
showType
=
4
;
showType
=
4
text
=
content
.
content
;
text
=
content
.
content
suffix
=
content
.
suffix
;
suffix
=
content
.
suffix
}
else
if
(
content
.
bizType
==
22
){
// 病例
}
else
if
(
content
.
bizType
==
22
){
// 病例
showType
=
7
;
showType
=
7
title
=
content
.
title
;
title
=
content
.
title
text
=
JSON
.
parse
(
content
.
content
)
;
text
=
JSON
.
parse
(
content
.
content
)
}
else
if
(
content
.
bizType
==
23
)
{
// 预约时间
}
else
if
(
content
.
bizType
==
23
)
{
// 预约时间
showType
=
8
;
showType
=
8
title
=
content
.
title
;
title
=
content
.
title
text
=
JSON
.
parse
(
content
.
content
)
;
text
=
JSON
.
parse
(
content
.
content
)
}
else
if
(
content
.
bizType
==
24
){
// 音视频与IM交互
}
else
if
(
content
.
bizType
==
24
){
// 音视频与IM交互
showType
=
9
;
showType
=
9
text
=
content
.
content
;
text
=
content
.
content
}
else
if
(
content
.
bizType
==
25
){
// 本次问诊结束
}
else
if
(
content
.
bizType
==
25
){
// 本次问诊结束
showType
=
10
;
showType
=
10
text
=
content
.
content
;
text
=
content
.
content
}
else
if
(
content
.
bizType
==
26
){
// 医生建议
}
else
if
(
content
.
bizType
==
26
){
// 医生建议
showType
=
11
;
showType
=
11
title
=
content
.
title
;
title
=
content
.
title
text
=
content
.
content
;
text
=
content
.
content
}
else
{
}
else
{
showType
=
5
;
showType
=
5
}
}
}
else
if
(
msg
.
type
.
toLowerCase
()
==
"image"
||
msg
.
type
.
toLowerCase
()
==
"picture"
)
{
// 图片
}
else
if
(
msg
.
type
.
toLowerCase
()
==
"image"
||
msg
.
type
.
toLowerCase
()
==
"picture"
)
{
// 图片
content
=
JSON
.
parse
(
msg
.
content
);
content
=
JSON
.
parse
(
msg
.
content
);
...
@@ -545,21 +545,21 @@ export default {
...
@@ -545,21 +545,21 @@ export default {
showType
=
2
;
showType
=
2
;
this
.
imgSizeHandleNew
(
msg
,
content
.
w
,
content
.
h
);
this
.
imgSizeHandleNew
(
msg
,
content
.
w
,
content
.
h
);
}
else
if
(
msg
.
type
.
toLowerCase
()
==
"audio"
)
{
// 语音
}
else
if
(
msg
.
type
.
toLowerCase
()
==
"audio"
)
{
// 语音
content
=
JSON
.
parse
(
msg
.
content
)
;
content
=
JSON
.
parse
(
msg
.
content
)
url
=
content
.
url
;
url
=
content
.
url
showType
=
6
showType
=
6
}
else
{
}
else
{
showType
=
1
;
// 文本
showType
=
1
// 文本
text
=
msg
.
content
;
text
=
msg
.
content
}
}
msg
.
title
=
title
;
msg
.
title
=
title
msg
.
text
=
text
;
msg
.
text
=
text
msg
.
showType
=
showType
;
msg
.
showType
=
showType
msg
.
suffix
=
suffix
;
msg
.
suffix
=
suffix
msg
.
size
=
size
;
msg
.
size
=
size
msg
.
url
=
url
;
msg
.
url
=
url
msg
.
sessionFlag
=
false
;
msg
.
sessionFlag
=
false
cMessageList
.
push
(
msg
)
;
cMessageList
.
push
(
msg
)
});
});
if
(
directFlag
===
1
)
{
if
(
directFlag
===
1
)
{
...
...
src/views/IM/diagnosis-admin/diagnosis-list.vue
浏览文件 @
9c470b18
此差异已折叠。
点击以展开。
src/views/IM/diagnosis-admin/im.scss
浏览文件 @
9c470b18
...
@@ -3,119 +3,11 @@
...
@@ -3,119 +3,11 @@
display
:
flex
;
display
:
flex
;
flex-direction
:
row
;
flex-direction
:
row
;
// min-width: 1200px;
// min-width: 1200px;
background
:
none
!
important
;
background
:
none
!
important
;
font-size
:
14px
;
font-size
:
14px
;
.left
{
display
:
none
;
width
:
270px
;
// padding: 0 25px 15px;
border-right
:
2px
solid
#f5f5f5
;
.l-header
{
display
:
flex
;
flex-direction
:
row
;
height
:
52px
;
justify-content
:
space-between
;
align-items
:
center
;
padding
:
0
12px
0
25px
;
p
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
color
:
#0d9078
;
cursor
:
pointer
;
img
{
width
:
16px
;
height
:
16px
;
margin-right
:
4px
;
}
span
{
font-size
:
14px
;
color
:
#0d9078
;
}
}
// & > span:first-child {
// font-size: 14px;
// }
// & > span:last-child {
// color: #0d9078;
// cursor: pointer;
// }
}
.c-num
{
padding
:
0
25px
;
height
:
40px
;
line-height
:
40px
;
font-size
:
12px
;
background
:
#fffbe6
;
}
.session-list
{
width
:
100%
;
height
:
100%
;
overflow
:
scroll
;
&
>
.item
{
width
:
100%
;
display
:
flex
;
height
:
72px
;
flex-direction
:
row
;
align-items
:
center
;
padding
:
0
12px
0
25px
;
cursor
:
pointer
;
.img-wrapper
{
// position: relative;
// top: 0;
// left: 0;
width
:
24px
;
height
:
24px
;
margin-right
:
10px
;
img
{
width
:
100%
;
height
:
100%
;
border-radius
:
20px
;
}
}
&
>
.desc
{
flex
:
1
;
.top
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
.name
{
}
}
.bottom
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
align-items
:
center
;
font-size
:
12px
;
color
:
#999999
;
.num
{
display
:
inline-block
;
min-width
:
16px
;
padding
:
2px
4px
;
border-radius
:
8px
;
text-align
:
center
;
color
:
#ffffff
;
background
:
#ff4d4f
;
}
&
>
img
{
display
:
block
;
width
:
15px
;
height
:
15px
;
padding
:
2px
0
2px
4px
;
}
}
}
&
.current
{
background
:
#f8f9fa
;
}
}
}
}
.center
{
.center
{
margin-left
:
240px
;
margin-left
:
10%
;
margin-right
:
240px
;
margin-right
:
10%
;
flex
:
1
;
flex
:
1
;
background
:
#fff
;
background
:
#fff
;
.c-header
{
.c-header
{
...
@@ -504,12 +396,6 @@
...
@@ -504,12 +396,6 @@
}
}
}
}
}
}
.right
{
display
:
none
;
width
:
240px
;
border-left
:
2px
solid
#f5f5f5
;
overflow
:
scroll
;
}
background
:
#fff
;
background
:
#fff
;
.time
{
.time
{
color
:
#999999
;
color
:
#999999
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录