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
提交
9e047b4f
提交
9e047b4f
编写于
7月 12, 2021
作者:
lyf
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
预约单列表优化,添加字段
上级
9ad369b1
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
221 行增加
和
52 行删除
+221
-52
package-lock.json
package-lock.json
+9
-4
followup.vue
src/components/common/followup.vue
+15
-1
table-c.vue
src/components/list/table-c.vue
+144
-39
constants.js
src/utils/constants.js
+30
-6
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+23
-2
未找到文件。
package-lock.json
浏览文件 @
9e047b4f
...
@@ -2734,7 +2734,8 @@
...
@@ -2734,7 +2734,8 @@
"ansi-regex"
:
{
"ansi-regex"
:
{
"version"
:
"2.1.1"
,
"version"
:
"2.1.1"
,
"bundled"
:
true
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
},
"aproba"
:
{
"aproba"
:
{
"version"
:
"1.2.0"
,
"version"
:
"1.2.0"
,
...
@@ -3151,7 +3152,8 @@
...
@@ -3151,7 +3152,8 @@
"safe-buffer"
:
{
"safe-buffer"
:
{
"version"
:
"5.1.2"
,
"version"
:
"5.1.2"
,
"bundled"
:
true
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
},
"safer-buffer"
:
{
"safer-buffer"
:
{
"version"
:
"2.1.2"
,
"version"
:
"2.1.2"
,
...
@@ -3207,6 +3209,7 @@
...
@@ -3207,6 +3209,7 @@
"version"
:
"3.0.1"
,
"version"
:
"3.0.1"
,
"bundled"
:
true
,
"bundled"
:
true
,
"dev"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"requires"
:
{
"ansi-regex"
:
"^2.0.0"
"ansi-regex"
:
"^2.0.0"
}
}
...
@@ -3250,12 +3253,14 @@
...
@@ -3250,12 +3253,14 @@
"wrappy"
:
{
"wrappy"
:
{
"version"
:
"1.0.2"
,
"version"
:
"1.0.2"
,
"bundled"
:
true
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
},
"yallist"
:
{
"yallist"
:
{
"version"
:
"3.1.1"
,
"version"
:
"3.1.1"
,
"bundled"
:
true
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
}
}
}
}
},
},
...
...
src/components/common/followup.vue
浏览文件 @
9e047b4f
...
@@ -41,7 +41,11 @@ export default {
...
@@ -41,7 +41,11 @@ export default {
diagnoseLogId
:
{
diagnoseLogId
:
{
type
:
Number
,
type
:
Number
,
default
:
0
default
:
0
}
},
toFollowReason
:{
type
:
String
,
default
:
''
},
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -60,8 +64,18 @@ export default {
...
@@ -60,8 +64,18 @@ export default {
}
}
}
}
},
},
watch
:{
toFollowReason
(
newdata
,
olddata
){
this
.
model
.
toFollowReason
=
newdata
}
},
created
()
{
created
()
{
vm
=
this
;
vm
=
this
;
},
mounted
(){
},
},
methods
:
{
methods
:
{
...
...
src/components/list/table-c.vue
浏览文件 @
9e047b4f
...
@@ -9,11 +9,7 @@
...
@@ -9,11 +9,7 @@
border
border
@
selection-change=
"handleSelectionChange"
@
selection-change=
"handleSelectionChange"
>
>
<el-table-column
<el-table-column
fixed
type=
"selection"
width=
"55"
>
</el-table-column>
fixed
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
<el-table-column
v-for=
"item in tableColumn"
v-for=
"item in tableColumn"
:key=
"item.prop"
:key=
"item.prop"
...
@@ -21,21 +17,24 @@
...
@@ -21,21 +17,24 @@
:label=
"item.label"
:label=
"item.label"
:show-overflow-tooltip=
"item.showtooltip"
:show-overflow-tooltip=
"item.showtooltip"
min-width=
"170"
min-width=
"170"
align=
"center"
>
align=
"center"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<div
v-if=
"scope.column.property == 'appointBeginTime'"
>
<div
v-if=
"scope.column.property == 'appointBeginTime'"
>
<p>
{{
scope
.
row
.
appointBeginTime
}}
</p>
<p>
{{
scope
.
row
.
appointBeginTime
}}
</p>
<p>
{{
scope
.
row
.
appointEndTime
}}
</p>
<p>
{{
scope
.
row
.
appointEndTime
}}
</p>
</div>
</div>
<div
v-else-if=
"scope.column.property == 'assistantBeginTime'"
>
<div
v-else-if=
"scope.column.property == 'assistantBeginTime'"
>
<p>
{{
scope
.
row
.
assistantBeginTime
}}
</p>
<p>
{{
scope
.
row
.
assistantBeginTime
}}
</p>
<p>
{{
scope
.
row
.
assistantEndTime
}}
</p>
<p>
{{
scope
.
row
.
assistantEndTime
}}
</p>
</div>
</div>
<div
v-else-if=
"scope.column.property == 'receptionBeginTime'"
>
<div
v-else-if=
"scope.column.property == 'receptionBeginTime'"
>
<p>
{{
scope
.
row
.
receptionBeginTime
}}
</p>
<p>
{{
scope
.
row
.
receptionBeginTime
}}
</p>
<p>
{{
scope
.
row
.
receptionEndTime
}}
</p>
<p>
{{
scope
.
row
.
receptionEndTime
}}
</p>
</div>
<div
v-else
>
<p>
{{
scope
.
row
[
scope
.
column
.
property
]
}}
</p>
</div>
</div>
<div
v-else
><p>
{{
scope
.
row
[
scope
.
column
.
property
]
}}
</p></div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
...
@@ -45,24 +44,132 @@
...
@@ -45,24 +44,132 @@
min-width=
"400"
min-width=
"400"
>
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,25)"
@
click=
"witeDiagnose(scope.row)"
>
设为待问诊
</el-button>
<el-button
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,21,22,23,24,25,26,3,2) && menuType ==1 "
@
click=
"changeRun(scope.row)"
>
更换运营
</el-button>
type=
"primary"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
@
click=
"goDetail(scope.row,false)"
>
查看详情
</el-button>
size=
"small"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,2,21,22,23,24,25,26,3) && menuType ==1 "
@
click=
"cancelRefund(scope.row)"
>
取消/退款
</el-button>
class=
"btn"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,21)"
@
click=
"witeGo(scope.row)"
>
设为稍后跟进
</el-button>
v-if=
"showBtn(scope.row, 25)"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,22,21)"
@
click=
"waitMatchDot(scope.row)"
>
设为待匹配医生
</el-button>
@
click=
"witeDiagnose(scope.row)"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,3,4,5,6,21,22,23,24,25,26)"
@
click=
"sendMessage(scope.row)"
>
发送消息
</el-button>
>
设为待问诊
</el-button
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,3,26)"
@
click=
"joinDiagnose(scope.row)"
>
加入问诊
</el-button>
>
<!--
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,2)"
@
click=
"matchRun(scope.row)"
>
匹配运营
</el-button>
-->
<el-button
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,2,3,4,6,21,22,23,24,25,26,5,6)"
@
click=
"goDetail(scope.row,true)"
>
编辑
</el-button>
type=
"primary"
<!--
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,21)"
@
click=
"waitDiagnose(scope.row)"
>
设为待分诊
</el-button>
-->
size=
"small"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,23)"
@
click=
"waitHzeDot(scope.row)"
>
设为待协调医生
</el-button>
class=
"btn"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,23,24)"
@
click=
"waitMatchTime(scope.row)"
>
设为待确认时间
</el-button>
v-if=
"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,3,25,26)"
@
click=
"reMatchDot(scope.row)"
>
重新匹配医生
</el-button>
showBtn(scope.row, 21, 22, 23, 24, 25, 26, 3, 2) && menuType == 1
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,3,26)"
@
click=
"changeTime(scope.row)"
>
修改时间
</el-button>
"
<!--
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,26)"
@
click=
"call(scope.row)"
>
发起问诊
</el-button>
-->
@
click=
"changeRun(scope.row)"
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,3)"
@
click=
"doneHandle(scope.row)"
>
设为已完成
</el-button>
>
更换运营
</el-button
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,2)"
@
click=
"setOffice(scope.row)"
>
设置科室
</el-button>
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
@
click=
"goDetail(scope.row, false)"
>
查看详情
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"
showBtn(scope.row, 2, 21, 22, 23, 24, 25, 26, 3) && menuType == 1
"
@
click=
"cancelRefund(scope.row)"
>
取消/退款
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 21)"
@
click=
"witeGo(scope.row)"
>
设为稍后跟进
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 22, 21)"
@
click=
"waitMatchDot(scope.row)"
>
设为待匹配医生
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 3, 4, 5, 6, 21, 22, 23, 24, 25, 26)"
@
click=
"sendMessage(scope.row)"
>
发送消息
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 3, 26)"
@
click=
"joinDiagnose(scope.row)"
>
加入问诊
</el-button
>
<!--
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,2)"
@
click=
"matchRun(scope.row)"
>
匹配运营
</el-button>
-->
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 2, 3, 4, 6, 21, 22, 23, 24, 25, 26, 5, 6)"
@
click=
"goDetail(scope.row, true)"
>
编辑
</el-button
>
<!--
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,21)"
@
click=
"waitDiagnose(scope.row)"
>
设为待分诊
</el-button>
-->
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 23)"
@
click=
"waitHzeDot(scope.row)"
>
设为待协调医生
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 23, 24)"
@
click=
"waitMatchTime(scope.row)"
>
设为待确认时间
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 3, 25, 26)"
@
click=
"reMatchDot(scope.row)"
>
重新匹配医生
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 3, 26)"
@
click=
"changeTime(scope.row)"
>
修改时间
</el-button
>
<!--
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row,26)"
@
click=
"call(scope.row)"
>
发起问诊
</el-button>
-->
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 3)"
@
click=
"doneHandle(scope.row)"
>
设为已完成
</el-button
>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
v-if=
"showBtn(scope.row, 2)"
@
click=
"setOffice(scope.row)"
>
设置科室
</el-button
>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
...
@@ -86,7 +193,7 @@
...
@@ -86,7 +193,7 @@
<
script
>
<
script
>
import
{
TABLE_COLUMN
}
from
"@/utils/constants"
;
import
{
TABLE_COLUMN
}
from
"@/utils/constants"
;
//0 只填写了患者信息(急速问诊才会有的状态),1 初始状态(未支付),2待问诊(待匹配运营)(支付成功待完善)3 问诊中(已完善),4、已问诊 5、取消, 6 已结算
//0 只填写了患者信息(急速问诊才会有的状态),1 初始状态(未支付),2待问诊(待匹配运营)(支付成功待完善)3 问诊中(已完善),4、已问诊 5、取消, 6 已结算
//21 已匹配, 22 待分诊, 23 待匹配接诊医生, 24 待协调医生 25 待设置问诊时间, 26 待问诊
//21 已匹配, 22 待分诊, 23 待匹配接诊医生, 24 待协调医生 25 待设置问诊时间, 26 待问诊
export
default
{
export
default
{
props
:
{
props
:
{
menuType
:
{
menuType
:
{
...
@@ -124,15 +231,13 @@ export default {
...
@@ -124,15 +231,13 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
tableColumn
:
TABLE_COLUMN
tableColumn
:
TABLE_COLUMN
,
};
};
},
},
mounted
()
{
mounted
()
{},
},
methods
:
{
methods
:
{
showBtn
(
row
,...
arr
)
{
showBtn
(
row
,
...
arr
)
{
return
arr
.
includes
(
row
.
status
)
return
arr
.
includes
(
row
.
status
)
;
// return true;
// return true;
},
},
// 选择
// 选择
...
@@ -216,7 +321,7 @@ export default {
...
@@ -216,7 +321,7 @@ export default {
setOffice
(
value
)
{
setOffice
(
value
)
{
this
.
$emit
(
"setOffice"
,
value
);
this
.
$emit
(
"setOffice"
,
value
);
},
},
},
},
};
};
</
script
>
</
script
>
...
...
src/utils/constants.js
浏览文件 @
9e047b4f
...
@@ -88,11 +88,11 @@ export const STATUS_LIST = [
...
@@ -88,11 +88,11 @@ export const STATUS_LIST = [
{
{
label
:
'已取消'
,
label
:
'已取消'
,
value
:
5
value
:
5
},
},
{
{
label
:
'已结算'
,
label
:
'已结算'
,
value
:
6
value
:
6
},
},
{
{
label
:
'已匹配'
,
label
:
'已匹配'
,
value
:
21
value
:
21
...
@@ -100,19 +100,19 @@ export const STATUS_LIST = [
...
@@ -100,19 +100,19 @@ export const STATUS_LIST = [
{
{
label
:
'待分诊'
,
label
:
'待分诊'
,
value
:
22
value
:
22
},
},
{
{
label
:
'待匹配医生'
,
label
:
'待匹配医生'
,
value
:
23
value
:
23
},
},
{
{
label
:
'待协调医生'
,
label
:
'待协调医生'
,
value
:
24
value
:
24
},
},
{
{
label
:
'待确认时间'
,
label
:
'待确认时间'
,
value
:
25
value
:
25
},
},
{
{
label
:
'待问诊'
,
label
:
'待问诊'
,
value
:
26
value
:
26
...
@@ -388,6 +388,10 @@ export const MATCH_TAB_LIST = [
...
@@ -388,6 +388,10 @@ export const MATCH_TAB_LIST = [
{
{
label
:
'已匹配'
,
label
:
'已匹配'
,
active
:
'21'
active
:
'21'
},
{
label
:
'稍后跟进'
,
active
:
'27'
}
}
]
]
export
const
TABLE_COLUMN
=
[
export
const
TABLE_COLUMN
=
[
...
@@ -411,6 +415,13 @@ export const TABLE_COLUMN = [
...
@@ -411,6 +415,13 @@ export const TABLE_COLUMN = [
label
:
"状态"
,
label
:
"状态"
,
showtooltip
:
false
,
showtooltip
:
false
,
},
},
{
prop
:
"toFollowReason"
,
label
:
"稍后跟进备注"
,
showtooltip
:
false
,
},
{
{
prop
:
"appointBeginTime"
,
prop
:
"appointBeginTime"
,
label
:
"预约时间"
,
label
:
"预约时间"
,
...
@@ -441,11 +452,17 @@ export const TABLE_COLUMN = [
...
@@ -441,11 +452,17 @@ export const TABLE_COLUMN = [
label
:
"助诊医生意向时间"
,
label
:
"助诊医生意向时间"
,
showtooltip
:
false
,
showtooltip
:
false
,
},
},
{
{
prop
:
"assistantRemark"
,
prop
:
"assistantRemark"
,
label
:
"助诊备注"
,
label
:
"助诊备注"
,
showtooltip
:
true
,
showtooltip
:
true
,
},
},
{
prop
:
"department"
,
label
:
"预约科室"
,
showtooltip
:
false
,
},
{
{
prop
:
"triageDepartment"
,
prop
:
"triageDepartment"
,
label
:
"分诊科室"
,
label
:
"分诊科室"
,
...
@@ -481,6 +498,13 @@ export const TABLE_COLUMN = [
...
@@ -481,6 +498,13 @@ export const TABLE_COLUMN = [
label
:
"患者姓名"
,
label
:
"患者姓名"
,
showtooltip
:
false
,
showtooltip
:
false
,
},
},
{
prop
:
"age"
,
label
:
"患者年龄"
,
showtooltip
:
false
,
},
{
{
prop
:
"patientMobilePhone"
,
prop
:
"patientMobilePhone"
,
label
:
"患者电话"
,
label
:
"患者电话"
,
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
9e047b4f
...
@@ -222,7 +222,8 @@
...
@@ -222,7 +222,8 @@
</el-tabs>
</el-tabs>
<match-component
@
search=
"search"
:matchVisible
.
sync=
"matchVisible"
:diagnoseLogId=
"diagnoseLogId"
:batchFlag=
"batchFlag"
:multipleSelection=
"multipleSelection"
:operateUserID=
"operateUserID"
></match-component>
<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>
<refund-component
@
search=
"search"
:refundVisible
.
sync=
"refundVisible"
:diagnoseLogId=
"diagnoseLogId"
></refund-component>
<followup-component
@
search=
"search"
:followupVisible
.
sync=
"followupVisible"
:diagnoseLogId=
"diagnoseLogId"
></followup-component>
<!-- 跟进原因弹出窗 -->
<followup-component
@
search=
"search"
:followupVisible
.
sync=
"followupVisible"
:toFollowReason=
"toFollowReason"
:diagnoseLogId=
"diagnoseLogId"
></followup-component>
<matching-doctor
@
search=
"search"
:doctorVisible
.
sync=
"doctorVisible"
:diagnoseLogId=
"diagnoseLogId"
:triageDepartmentId=
"triageDepartmentId"
: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>
<diagnosis-component
@
search=
"search"
:diagnosisVisible
.
sync=
"diagnosisVisible"
:diagnoseLogId=
"diagnoseLogId"
></diagnosis-component>
<coordinating-doctor
@
search=
"search"
:coordinatingVisible
.
sync=
"coordinatingVisible"
:diagnoseLogId=
"diagnoseLogId"
:bizType=
"bizType"
></coordinating-doctor>
<coordinating-doctor
@
search=
"search"
:coordinatingVisible
.
sync=
"coordinatingVisible"
:diagnoseLogId=
"diagnoseLogId"
:bizType=
"bizType"
></coordinating-doctor>
...
@@ -315,6 +316,7 @@ export default {
...
@@ -315,6 +316,7 @@ export default {
timeClickFlag
:
true
,
timeClickFlag
:
true
,
tableHeight
:
500
,
tableHeight
:
500
,
diagnoseLogId
:
0
,
diagnoseLogId
:
0
,
toFollowReason
:
''
,
matchVisible
:
false
,
matchVisible
:
false
,
refundVisible
:
false
,
refundVisible
:
false
,
followupVisible
:
false
,
followupVisible
:
false
,
...
@@ -430,7 +432,24 @@ export default {
...
@@ -430,7 +432,24 @@ export default {
},
},
// tab切换
// tab切换
handleClick
(
val
)
{
handleClick
(
val
)
{
this
.
searchParam
.
status
=
val
.
paneName
==
99
?
''
:
val
.
paneName
;
console
.
log
(
val
.
paneName
)
this
.
searchParam
.
status
=
val
.
paneName
==
99
?
''
:
val
.
paneName
==
27
?
'21'
:
val
.
paneName
;
if
(
this
.
fromType
==
5
&&
this
.
searchParam
.
status
){
if
(
val
.
paneName
==
27
){
this
.
searchParam
.
swagger
=
1
}
else
{
this
.
searchParam
.
swagger
=
2
}
}
else
{
if
(
this
.
searchParam
.
hasOwnProperty
(
"swagger"
)){
delete
this
.
searchParam
.
swagger
}
}
this
.
getsearch
();
this
.
getsearch
();
},
},
// 初始化时间
// 初始化时间
...
@@ -558,7 +577,9 @@ export default {
...
@@ -558,7 +577,9 @@ export default {
//设为稍后跟进
//设为稍后跟进
witeGo
(
row
)
{
witeGo
(
row
)
{
this
.
followupVisible
=
true
;
this
.
followupVisible
=
true
;
this
.
toFollowReason
=
row
.
toFollowReason
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
},
},
//设为待匹配医生
//设为待匹配医生
waitMatchDot
(
row
)
{
waitMatchDot
(
row
)
{
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录