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
提交
f00d37a0
提交
f00d37a0
编写于
12月 07, 2023
作者:
peng.zhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改时间功能
上级
b1317d3f
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
26 行增加
和
4 行删除
+26
-4
.env.development.local
.env.development.local
+1
-1
diagnosis-doctor.vue
src/components/common/diagnosis-doctor.vue
+16
-1
table-set-component.vue
src/components/list/table-set-component.vue
+5
-1
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+4
-1
未找到文件。
.env.development.local
浏览文件 @
f00d37a0
...
...
@@ -17,4 +17,4 @@ VUE_APP_IS_LOCAL=true
VUE_APP_APPID=wxf4e66242d31c81c2
#本地token
VUE_APP_TOKEN=
A696F7FD7DD5429B9CB693E91BD3A640
VUE_APP_TOKEN=
EAA2E8A309DE492A8ACCE2F2C281401D
src/components/common/diagnosis-doctor.vue
浏览文件 @
f00d37a0
...
...
@@ -11,6 +11,7 @@
<div
class=
"choose-diagnosis-doctor"
>
<el-select
v-model=
"formData.receptionId"
:disabled=
"onlyChangeTime"
filterable
placeholder=
"请选择接诊医生"
class=
"set-width"
...
...
@@ -158,6 +159,11 @@
let
vm
=
null
;
export
default
{
props
:
{
// 修改时间弹窗,不允许修改医生
onlyChangeTime
:
{
type
:
Boolean
,
default
:
false
,
},
diagnosisDoctorVisible
:
{
type
:
Boolean
,
default
:
false
,
...
...
@@ -196,7 +202,7 @@
rateValue
:
0
,
colors
:
[
'#0D9078'
,
'#0D9078'
,
'#0D9078'
],
show
:
false
,
title
:
'设置接诊医生'
,
//
title: '设置接诊医生',
confirmTxt
:
'确定'
,
cancleTxt
:
''
,
isClick
:
false
,
...
...
@@ -250,6 +256,15 @@
maxTodayNum
:
0
,
};
},
computed
:
{
title
()
{
if
(
this
.
onlyChangeTime
)
{
return
'设置预约时间(问诊时间)'
;
}
else
{
return
'设置接诊医生'
;
}
}
},
watch
:
{
diagnoseType
:
function
()
{
this
.
getDoctorList
();
...
...
src/components/list/table-set-component.vue
浏览文件 @
f00d37a0
...
...
@@ -196,7 +196,7 @@
type=
"primary"
size=
"small"
class=
"btn"
@
click=
"changeTime(scope.row)"
@
click=
"changeTime
New
(scope.row)"
>
修改时间
</el-button>
...
...
@@ -394,6 +394,10 @@
waitMatchTime
(
row
)
{
this
.
$emit
(
'waitMatchTime'
,
row
);
},
// 设为待确认时间
changeTimeNew
(
row
)
{
this
.
$emit
(
'waitMatchTime'
,
row
,
true
);
},
// 重新匹配医生
reMatchDot
(
row
,
type
)
{
this
.
$emit
(
'reMatchDot'
,
row
,
type
);
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
f00d37a0
...
...
@@ -539,6 +539,7 @@
:diagnosis-doctor-visible
.
sync=
"diagnosisDoctorVisible"
:diagnose-log-id=
"diagnoseLogId"
:diagnose-type=
"diagnoseType"
:only-change-time=
"onlyChangeTime"
:doctor-id=
"doctorId"
:range-time-data=
"rangeTimeData"
:consult-road=
"consultRoad"
...
...
@@ -658,6 +659,7 @@
},
data
()
{
return
{
onlyChangeTime
:
false
,
saveFresh
:
true
,
isUp
:
false
,
endFlag
:
false
,
...
...
@@ -1384,7 +1386,8 @@
this
.
bizType
=
8
;
},
// 设为待确认时间
waitMatchTime
(
row
)
{
waitMatchTime
(
row
,
onlyChangeTime
)
{
this
.
onlyChangeTime
=
onlyChangeTime
;
this
.
doctorInfo
=
row
;
this
.
rangeTimeData
=
row
.
assistantBeginTime
;
this
.
diagnoseFlag
=
true
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录