Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
jingqi.liu
pica-admin-consultation
提交
b5ff6da0
提交
b5ff6da0
编写于
8月 05, 2021
作者:
张磊
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feat/zl' into 'develop'
Feat/zl See merge request
com.pica.cloud.education.frontend/pica-admin-consultation!69
上级
cbe87ba4
41dec388
变更
8
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
31 行增加
和
15 行删除
+31
-15
App.vue
src/App.vue
+1
-2
chat.scss
src/components/IM/chat.scss
+7
-4
chat.vue
src/components/IM/chat.vue
+5
-3
diagnosis-live.vue
src/components/IM/diagnosis-live.vue
+7
-1
diagnoseAdvice.vue
src/components/common/diagnoseAdvice.vue
+7
-2
inquirylist.vue
src/components/common/inquirylist.vue
+2
-2
socket.js
src/store/module/socket.js
+1
-0
workbench.vue
src/views/IM/diagnosis-admin/workbench.vue
+1
-1
未找到文件。
src/App.vue
浏览文件 @
b5ff6da0
...
...
@@ -66,9 +66,8 @@ export default {
},
mounted
()
{
setTimeout
(
function
()
{
bindDragHeader
(
'.c-header'
,
'.chat-wrap'
,
'.wenzenbox'
);
bindDragHeader
(
'.c-header'
,
'.chat-wrap'
);
},
1000
)
},
methods
:
{
// 修改token
...
...
src/components/IM/chat.scss
浏览文件 @
b5ff6da0
...
...
@@ -7,7 +7,7 @@
min-height
:
700px
;
background
:
#ffffff
;
box-shadow
:
10px
10px
50px
0px
#d9d9d9
;
overflow
:
hidden
;
overflow
:
visible
;
border-radius
:
18px
;
.component-content
{
...
...
@@ -485,11 +485,14 @@
}
}
.wenzenbox
{
position
:
absolute
;
top
:
20px
;
right
:
20px
;
width
:
120px
;
height
:
120px
;
img
{
width
:
120px
;
height
:
1
20px
;
width
:
100%
;
height
:
1
00%
;
}
}
.shrink64
{
...
...
@@ -497,6 +500,6 @@
width
:
120px
;
background-color
:
transparent
;
box-shadow
:none
;
overflow
:
hidden
;
overflow
:
visible
;
border-radius
:
18px
;
}
src/components/IM/chat.vue
浏览文件 @
b5ff6da0
...
...
@@ -183,8 +183,11 @@
</section>
</article>
</section>
<div
v-show=
"!toggleChatSize"
class=
"wenzenbox"
@
click=
"toggleChatModal"
>
<img
src=
"../../assets/image/IM/wenzhenicon.png"
alt=
""
/>
<div
class=
"wenzenbox-header"
>
<img
src=
"../../assets/image/IM/wenzhenicon.png"
alt=
""
/>
</div>
</div>
<!-- 选择链接弹窗 -->
<el-dialog
...
...
@@ -265,7 +268,6 @@ let forwardMsgIntervalId = null,
continueIntervalId
=
null
,
autoCompletionIntervalId
=
null
,
cacheMap
=
{};
let
_this
=
null
;
export
default
{
components
:
{
...
...
@@ -320,7 +322,7 @@ export default {
teamMemberList
:
[],
doctorName
:
""
,
doctorImg
:
""
,
toggleChatSize
:
fals
e
,
toggleChatSize
:
tru
e
,
};
},
computed
:
{
...
...
src/components/IM/diagnosis-live.vue
浏览文件 @
b5ff6da0
...
...
@@ -31,7 +31,7 @@
<span
class=
"text-name"
>
{{
item
.
name
}}
</span>
<span
class=
"text-dep"
>
{{
item
.
role
==
1
?
"问诊医生"
:
"接诊医生"
}}
</span>
</p>
<p
class=
"text-num"
>
{{
item
.
role
==
1
?
currentChat
.
doctorMobile
:
currentChat
.
use
rMobile
}}
</p>
<p
class=
"text-num"
>
{{
item
.
role
==
1
?
currentChat
.
userMobile
:
currentChat
.
docto
rMobile
}}
</p>
</div>
</div>
<div
:class=
"
{viedowrap:currentChat.diagnoseType == 2}" :id="rtc.viewslist[index] ? rtc.viewslist[index].id : ''">
...
...
@@ -417,6 +417,12 @@ export default {
this
.
memberList
.
forEach
((
item
)
=>
{
if
(
item
.
liveUserId
==
id
)
{
item
.
status
=
3
;
if
(
item
.
role
==
1
){
this
.
doctorTrtcEntryStatus
=
2
;
}
if
(
item
.
role
==
2
){
this
.
userTrtcEntryStatus
=
2
;
}
}
});
console
.
log
(
'---this.removeMember'
,
this
.
memberList
,
id
);
...
...
src/components/common/diagnoseAdvice.vue
浏览文件 @
b5ff6da0
...
...
@@ -50,7 +50,12 @@ export default {
if
(
newVal
!==
oldVal
&&
newVal
){
const
c
=
this
.
currentAdvice
&&
this
.
currentAdvice
.
content
;
console
.
log
(
'ccc=cc=c=c='
,
c
)
this
.
diagnoseAdvice
=
c
;
if
(
c
==
null
){
this
.
diagnoseAdvice
=
''
;
}
else
{
this
.
diagnoseAdvice
=
c
;
}
}
}
},
...
...
@@ -66,7 +71,7 @@ export default {
},
methods
:{
SaveAdvice
()
{
if
(
this
.
diagnoseAdvice
.
trim
()
===
''
){
if
(
String
(
this
.
diagnoseAdvice
)
.
trim
()
===
''
){
this
.
$message
({
message
:
"请填写诊断建议"
,
type
:
"success"
,
...
...
src/components/common/inquirylist.vue
浏览文件 @
b5ff6da0
...
...
@@ -190,9 +190,9 @@ export default {
case
1
:
return
'待处理'
case
2
:
return
'
问诊进行中
'
return
'
待问诊
'
case
3
:
return
'
未开始
'
return
'
问诊进行中
'
case
4
:
return
'问诊已完成'
case
5
:
...
...
src/store/module/socket.js
浏览文件 @
b5ff6da0
...
...
@@ -80,6 +80,7 @@ export default {
style
:
`float:right;margin-top:
${
30
}
px;`
,
on
:
{
click
:
function
()
{
console
.
log
(
'----state'
,
state
)
if
(
state
.
showChat
){
_VM
.
$message
({
message
:
'不可同时进入多个诊室,请先退出已进入的诊室,再试。'
,
...
...
src/views/IM/diagnosis-admin/workbench.vue
浏览文件 @
b5ff6da0
...
...
@@ -269,7 +269,7 @@ export default {
}
}
</
style
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
>
::v-deep
{
.el-date-editor
{
.el-input__inner
{
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录