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
提交
4e2975aa
提交
4e2975aa
编写于
7月 08, 2021
作者:
vino
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
设置科室回显
上级
73c09475
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
22 行增加
和
5 行删除
+22
-5
matching-doctor.vue
src/components/common/matching-doctor.vue
+15
-0
table-c.vue
src/components/list/table-c.vue
+3
-3
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+4
-2
未找到文件。
src/components/common/matching-doctor.vue
浏览文件 @
4e2975aa
...
...
@@ -65,6 +65,10 @@ export default {
type
:
Number
,
default
:
0
},
triageDepartmentId
:
{
type
:
Number
|
String
,
default
:
0
},
},
data
()
{
return
{
...
...
@@ -90,6 +94,17 @@ export default {
vm
=
this
;
this
.
getDepList
();
},
watch
:{
triageDepartmentId
:
function
(){
if
(
this
.
triageDepartmentId
==
0
){
this
.
model
.
triageDepartmentId
=
""
;
}
else
{
this
.
model
.
triageDepartmentId
=
this
.
triageDepartmentId
;
this
.
change
(
this
.
triageDepartmentId
);
}
}
},
methods
:
{
getDepList
()
{
getDepList
().
then
(
function
(
res
)
{
...
...
src/components/list/table-c.vue
浏览文件 @
4e2975aa
...
...
@@ -193,9 +193,9 @@ export default {
this
.
$emit
(
"changeTime"
,
row
);
},
//发起问诊
call
(
row
)
{
this
.
$emit
(
"call"
,
row
);
},
//
call(row) {
//
this.$emit("call", row);
//
},
//设为已完成
doneHandle
(
row
)
{
this
.
$emit
(
"doneHandle"
,
row
);
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
4e2975aa
...
...
@@ -213,7 +213,6 @@
@
waitMatchTime=
"waitMatchTime"
@
reMatchDot=
"reMatchDot"
@
changeTime=
"changeTime"
@
call=
"call"
@
doneHandle=
"doneHandle"
@
setOffice=
"setOffice"
@
handleSizeChange=
"handleSizeChange"
...
...
@@ -224,7 +223,7 @@
<match-component
@
search=
"search"
:matchVisible
.
sync=
"matchVisible"
:diagnoseLogId=
"diagnoseLogId"
:batchFlag=
"batchFlag"
:multipleSelection=
"multipleSelection"
:operateUserID=
"operateUserID"
></match-component>
<refund-component
@
search=
"search"
:refundVisible
.
sync=
"refundVisible"
:diagnoseLogId=
"diagnoseLogId"
></refund-component>
<followup-component
@
search=
"search"
:followupVisible
.
sync=
"followupVisible"
:diagnoseLogId=
"diagnoseLogId"
></followup-component>
<matching-doctor
@
search=
"search"
:doctorVisible
.
sync=
"doctorVisible"
:diagnoseLogId=
"diagnoseLogId"
:bizType=
"bizType"
></matching-doctor>
<matching-doctor
@
search=
"search"
:doctorVisible
.
sync=
"doctorVisible"
:diagnoseLogId=
"diagnoseLogId"
:triageDepartmentId=
"triageDepartmentId"
:bizType=
"bizType"
></matching-doctor>
<diagnosis-component
@
search=
"search"
:diagnosisVisible
.
sync=
"diagnosisVisible"
:diagnoseLogId=
"diagnoseLogId"
></diagnosis-component>
<coordinating-doctor
@
search=
"search"
:coordinatingVisible
.
sync=
"coordinatingVisible"
:diagnoseLogId=
"diagnoseLogId"
:bizType=
"bizType"
></coordinating-doctor>
<diagnosis-doctor
@
search=
"search"
:diagnosisDoctorVisible
.
sync=
"diagnosisDoctorVisible"
:diagnoseLogId=
"diagnoseLogId"
:diagnoseType=
"diagnoseType"
:doctorId=
"doctorId"
></diagnosis-doctor>
...
...
@@ -332,6 +331,7 @@ export default {
diagnoseType
:
0
,
doctorId
:
0
,
operateUserID
:
""
,
triageDepartmentId
:
0
,
pickerOptions1
:
{
disabledDate
:
(
time
)
=>
{
return
time
.
getTime
()
>
new
Date
().
getTime
();
//减去一天的时间代表可以选择同一天;
...
...
@@ -564,6 +564,7 @@ export default {
if
(
row
.
status
==
22
){
this
.
doctorVisible
=
true
;
this
.
bizType
=
7
;
this
.
triageDepartmentId
=
row
.
triageDepartmentId
;
}
else
{
this
.
diagnosisTimeVisible
=
true
;
...
...
@@ -686,6 +687,7 @@ export default {
this
.
doctorVisible
=
true
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
bizType
=
15
;
this
.
triageDepartmentId
=
row
.
triageDepartmentId
;
},
handleSizeChange
(
value
)
{
this
.
searchParam
.
pageSize
=
value
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录