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
提交
c0db217a
提交
c0db217a
编写于
11月 07, 2023
作者:
peng.zhao
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feature/zl' into feature/zp
上级
ddd1733d
fb3b8950
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
41 行增加
和
36 行删除
+41
-36
diagnosis.js
src/api/diagnosis.js
+1
-1
diagnosis-doctor.vue
src/components/common/diagnosis-doctor.vue
+38
-33
table-set-component.vue
src/components/list/table-set-component.vue
+1
-1
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+1
-1
未找到文件。
src/api/diagnosis.js
浏览文件 @
c0db217a
...
...
@@ -16,7 +16,7 @@ export const getDoctorList = async (data) => {
};
export
const
getDoctorListNew
=
async
(
data
)
=>
{
return
request
({
url
:
'/diagnose/doctorService/doctorList
M
ew'
,
url
:
'/diagnose/doctorService/doctorList
N
ew'
,
params
:
data
,
method
:
'get'
,
});
...
...
src/components/common/diagnosis-doctor.vue
浏览文件 @
c0db217a
...
...
@@ -75,44 +75,49 @@
<span>
未选定医生
</span>
</div>
<div
class=
"work-info-Num"
>
<span
class=
"work-info-Num-span"
>
可选排班时间(预约已满需要沟通确定时间)
</span>
<div
v-if=
"timeChoosetList.length > 0"
class=
"time-list-show"
>
<div
v-if=
"diagnoseType != 4"
>
<span
class=
"work-info-Num-span"
>
可选排班时间(预约已满需要沟通确定时间)
</span>
<div
v-for=
"(itemChild, indexChild) in timeChoosetList"
:key=
"indexChild"
class=
"home_grid_item"
v-if=
"timeChoosetList.length > 0"
class=
"time-list-show"
>
<div
class=
"grid_tex
t"
:
class=
"chooseTimeIndex == indexChild && 'choose-time-choose'
"
@
click=
"getChooseTimeValue(itemChild, indexChild)
"
v-for=
"(itemChild, indexChild) in timeChoosetLis
t"
:
key=
"indexChild
"
class=
"home_grid_item
"
>
<span
:class=
"
itemChild.isFull == 1 ? 'show-meet-time' : 'no-meet-time'
"
>
{{
itemChild
.
time
}}
</span>
<p
:class=
"
itemChild.isFull == 1 ? 'can-meet-time' : 'canot-meet-time'
"
<div
class=
"grid_text"
:class=
"chooseTimeIndex == indexChild && 'choose-time-choose'"
@
click=
"getChooseTimeValue(itemChild, indexChild)"
>
{{
itemChild
.
isFull
==
1
?
'可约'
:
'已满'
}}
</p>
<span
:class=
"
itemChild.isFull == 1 ? 'show-meet-time' : 'no-meet-time'
"
>
{{
itemChild
.
time
}}
</span>
<p
:class=
"
itemChild.isFull == 1
? 'can-meet-time'
: 'canot-meet-time'
"
>
{{
itemChild
.
isFull
==
1
?
'可约'
:
'已满'
}}
</p>
</div>
</div>
</div>
<div
v-else
class=
"time-list-showNo"
>
<span>
无可选时间
</span>
</div>
</div>
<div
v-else
class=
"time-list-showNo"
>
<span>
无可选时间
</span>
</div>
<div
class=
"work-info-botton"
>
<span
slot=
"footer"
...
...
@@ -314,7 +319,7 @@
});
return
false
;
}
if
(
this
.
startTime
==
''
)
{
if
(
this
.
startTime
==
''
&&
this
.
diagnoseType
!=
4
)
{
this
.
$message
({
message
:
'请选择排班时间'
,
type
:
'warning'
,
...
...
@@ -328,8 +333,8 @@
innerFlag
:
this
.
formData
.
innerFlag
,
receptionId
:
this
.
formData
.
receptionId
,
receptionName
:
this
.
formData
.
receptionName
,
receptionBeginTime
:
this
.
startTime
,
receptionEndTime
:
this
.
endTime
,
receptionBeginTime
:
this
.
startTime
||
''
,
receptionEndTime
:
this
.
endTime
||
''
,
diagnoseChannel
:
this
.
formData
.
diagnoseChannel
,
};
manualQueue
(
req
)
...
...
src/components/list/table-set-component.vue
浏览文件 @
c0db217a
...
...
@@ -183,7 +183,7 @@
修改指定医生
</el-button>
<el-button
v-if=
"s
cope.row.diagnoseType !== 4 && s
howBtn(scope.row, 3, 25, 26)"
v-if=
"showBtn(scope.row, 3, 25, 26)"
type=
"primary"
size=
"small"
class=
"btn"
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
c0db217a
...
...
@@ -1271,7 +1271,7 @@
this
.
patientMobilePhone
=
row
.
patientMobilePhone
;
this
.
bizType
=
5
;
if
(
this
.
diagnoseType
==
=
'4'
)
{
if
(
this
.
diagnoseType
==
'4'
)
{
this
.
$confirm
(
'是否重新匹配医生'
,
'提示'
,
{
confirmButtonText
:
'是'
,
cancelButtonText
:
'否'
,
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录