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
提交
7f834a25
提交
7f834a25
编写于
11月 21, 2023
作者:
张磊
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wx appoint
上级
91e94d44
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
38 行增加
和
10 行删除
+38
-10
table-set-component.vue
src/components/list/table-set-component.vue
+11
-9
index.js
src/utils/diagnosis/index.js
+9
-0
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+18
-1
未找到文件。
src/components/list/table-set-component.vue
浏览文件 @
7f834a25
...
@@ -191,15 +191,6 @@
...
@@ -191,15 +191,6 @@
>
>
手动打回
手动打回
</el-button>
</el-button>
<!--
<el-button
v-if=
"showBtn(scope.row, 3, 25, 26)"
type=
"primary"
size=
"small"
class=
"btn"
@
click=
"reMatchDot(scope.row, 16)"
>
重新联系助诊医生
</el-button>
-->
<el-button
<el-button
v-if=
"scope.row.diagnoseType !== 4 && showBtn(scope.row, 3, 26)"
v-if=
"scope.row.diagnoseType !== 4 && showBtn(scope.row, 3, 26)"
type=
"primary"
type=
"primary"
...
@@ -227,6 +218,14 @@
...
@@ -227,6 +218,14 @@
>
>
设置科室
设置科室
</el-button>
</el-button>
<el-button
type=
"primary"
size=
"small"
class=
"btn"
@
click=
"callAssistant(scope.row,)"
>
呼叫医助
</el-button>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
...
@@ -416,6 +415,9 @@
...
@@ -416,6 +415,9 @@
setOffice
(
value
)
{
setOffice
(
value
)
{
this
.
$emit
(
'setOffice'
,
value
);
this
.
$emit
(
'setOffice'
,
value
);
},
},
callAssistant
(
row
){
this
.
$emit
(
'callAssistant'
,
row
);
}
},
},
};
};
</
script
>
</
script
>
...
...
src/utils/diagnosis/index.js
浏览文件 @
7f834a25
...
@@ -16,6 +16,15 @@ export const updateDiagnosis = (params) => {
...
@@ -16,6 +16,15 @@ export const updateDiagnosis = (params) => {
});
});
};
};
/* 保存问诊相关信息*/
export
const
callAssistantDoctor
=
(
diagnoseLogId
)
=>
{
return
fetch
({
headers
,
url
:
getBaseUrl
(
`/diagnose/admin/diagnose/callAssistantDoctor/
${
diagnoseLogId
}
`
),
method
:
'get'
,
});
};
export
const
manualQueue
=
(
params
)
=>
{
export
const
manualQueue
=
(
params
)
=>
{
return
fetch
({
return
fetch
({
headers
,
headers
,
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
7f834a25
...
@@ -491,6 +491,7 @@
...
@@ -491,6 +491,7 @@
@
handleSizeChange=
"handleSizeChange"
@
handleSizeChange=
"handleSizeChange"
@
handleCurrentChange=
"handleCurrentChange"
@
handleCurrentChange=
"handleCurrentChange"
@
getTableData=
"getTableData"
@
getTableData=
"getTableData"
@
callAssistant=
"callAssistant"
/>
/>
</el-tab-pane>
</el-tab-pane>
</el-tabs>
</el-tabs>
...
@@ -601,7 +602,7 @@
...
@@ -601,7 +602,7 @@
</template>
</template>
<
script
>
<
script
>
let
vm
=
null
;
let
vm
=
null
;
import
{
updateDiagnosis
}
from
'../../../utils/diagnosis'
;
import
{
updateDiagnosis
,
callAssistantDoctor
}
from
'../../../utils/diagnosis'
;
import
{
outbounNote
}
from
'../../../api/diagnosis'
;
import
{
outbounNote
}
from
'../../../api/diagnosis'
;
import
{
base64decode
}
from
'../../../utils/utils.js'
;
import
{
base64decode
}
from
'../../../utils/utils.js'
;
import
{
DIAGNOS_LIST_NEW
}
from
'@/utils/GeneralData/diagnosis-list-new'
;
import
{
DIAGNOS_LIST_NEW
}
from
'@/utils/GeneralData/diagnosis-list-new'
;
...
@@ -1302,6 +1303,22 @@
...
@@ -1302,6 +1303,22 @@
this
.
triageDepartment
=
row
.
triageDepartment
;
this
.
triageDepartment
=
row
.
triageDepartment
;
this
.
diaUpdateDeIdVisible
=
true
;
this
.
diaUpdateDeIdVisible
=
true
;
},
},
callAssistant
(
row
)
{
this
.
$confirm
(
'确定呼叫医助吗?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
console
.
log
(
'--'
,
row
,
row
.
diagnoseLogId
);
callAssistantDoctor
(
row
.
diagnoseLogId
).
then
(
res
=>
{
if
(
res
.
code
==
'000000'
){
}
else
{
vm
.
$message
.
error
(
res
.
message
);
}
});
})
},
// 发送消息
// 发送消息
sendMessage
(
row
)
{
sendMessage
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录