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
提交
9ad369b1
提交
9ad369b1
编写于
7月 11, 2021
作者:
changdi.hao
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev-20210702' into 'release'
Dev 20210702 See merge request
!22
上级
70aaf632
45a27555
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
21 行增加
和
4 行删除
+21
-4
appointment-time.vue
src/components/common/appointment-time.vue
+5
-1
diagnosis-doctor.vue
src/components/common/diagnosis-doctor.vue
+6
-1
diagnosis-time.vue
src/components/common/diagnosis-time.vue
+5
-1
refund.vue
src/components/common/refund.vue
+5
-1
未找到文件。
src/components/common/appointment-time.vue
浏览文件 @
9ad369b1
...
...
@@ -43,7 +43,7 @@
<!--
</el-row>
-->
<span
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center;"
>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
>
确定
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
:disabled=
"isClick"
>
确定
</el-button>
</span>
</el-dialog>
</div>
...
...
@@ -61,6 +61,7 @@ export default {
confirmTxt
:
'确定'
,
cancleTxt
:
''
,
_promise
:
null
,
isClick
:
false
,
model
:
{
diagnoseChannel
:
1
,
appointBeginTime
:
""
,
...
...
@@ -125,7 +126,9 @@ export default {
appointBeginTime
:
this
.
rangeTime
[
0
],
appointEndTime
:
this
.
rangeTime
[
1
]
}
vm
.
isClick
=
true
;
updateDiagnosis
(
req
).
then
(
function
(
res
)
{
vm
.
isClick
=
false
;
if
(
res
.
code
==
"000000"
)
{
vm
.
cancel
();
vm
.
$emit
(
'search'
);
...
...
@@ -133,6 +136,7 @@ export default {
vm
.
$message
.
error
(
res
.
message
);
}
}).
catch
(
function
(
error
)
{
vm
.
isClick
=
false
;
vm
.
$message
.
error
(
res
.
message
);
});
// }
...
...
src/components/common/diagnosis-doctor.vue
浏览文件 @
9ad369b1
...
...
@@ -74,7 +74,7 @@
<!--
</el-row>
-->
<span
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center;"
>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
>
确定
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
:disabled=
"isClick"
>
确定
</el-button>
</span>
</el-dialog>
</div>
...
...
@@ -109,6 +109,7 @@ export default {
confirmTxt
:
'确定'
,
cancleTxt
:
''
,
_promise
:
null
,
isClick
:
false
,
formData
:{
receptionId
:
this
.
doctorId
,
receptionName
:
""
,
...
...
@@ -203,7 +204,9 @@ export default {
receptionEndTime
:
this
.
rangeTime
[
1
],
}
}
vm
.
isClick
=
true
updateDiagnosis
(
req
).
then
(
function
(
res
)
{
vm
.
isClick
=
false
if
(
res
.
code
==
"000000"
)
{
vm
.
cancel
();
vm
.
$emit
(
'search'
);
...
...
@@ -211,12 +214,14 @@ export default {
vm
.
$message
.
error
(
res
.
message
);
}
}).
catch
(
function
(
error
)
{
vm
.
isClick
=
false
vm
.
$message
.
error
(
res
.
message
);
});
}
})
},
cancel
(){
this
.
formData
.
outsideDoctor
=
''
;
this
.
$emit
(
'update:diagnosisDoctorVisible'
,
false
);
},
doctorChanged
(
value
)
{
...
...
src/components/common/diagnosis-time.vue
浏览文件 @
9ad369b1
...
...
@@ -38,7 +38,7 @@
<!--
</el-row>
-->
<span
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center;"
>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
>
确定
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
:disabled-=
"isClick"
>
确定
</el-button>
</span>
</el-dialog>
</div>
...
...
@@ -76,6 +76,7 @@ export default {
confirmTxt
:
'确定'
,
cancleTxt
:
''
,
_promise
:
null
,
isClick
:
false
,
model
:
{
assistantRemark
:
""
},
...
...
@@ -116,6 +117,7 @@ export default {
vm
.
$message
.
warning
(
"请选择助诊意向时间"
);
return
;
}
vm
.
isClick
=
true
let
req
=
{
id
:
this
.
diagnoseLogId
,
bizType
:
this
.
bizType
,
...
...
@@ -124,6 +126,7 @@ export default {
assistantRemark
:
this
.
model
.
assistantRemark
}
updateDiagnosis
(
req
).
then
(
function
(
res
)
{
vm
.
isClick
=
false
;
if
(
res
.
code
==
"000000"
)
{
vm
.
cancel
();
vm
.
$emit
(
'search'
);
...
...
@@ -131,6 +134,7 @@ export default {
vm
.
$message
.
error
(
res
.
message
);
}
}).
catch
(
function
(
error
)
{
vm
.
isClick
=
false
;
vm
.
$message
.
error
(
res
.
message
);
});
// }
...
...
src/components/common/refund.vue
浏览文件 @
9ad369b1
...
...
@@ -26,7 +26,7 @@
<!--
</el-row>
-->
<span
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center;"
>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
>
确定
</el-button>
<el-button
type=
"primary"
@
click=
"confirm"
:disabled=
"isClick"
>
确定
</el-button>
</span>
</el-dialog>
</div>
...
...
@@ -53,6 +53,7 @@ export default {
confirmTxt
:
'确定'
,
cancleTxt
:
''
,
_promise
:
null
,
isClick
:
false
,
model
:{
refundReason
:
""
},
...
...
@@ -75,7 +76,9 @@ export default {
bizType
:
2
,
refundReason
:
this
.
model
.
refundReason
}
vm
.
isClick
=
true
updateDiagnosis
(
req
).
then
(
function
(
res
)
{
vm
.
isClick
=
false
if
(
res
.
code
==
"000000"
)
{
vm
.
cancel
();
vm
.
$emit
(
'search'
);
...
...
@@ -83,6 +86,7 @@ export default {
vm
.
$message
.
error
(
res
.
message
);
}
}).
catch
(
function
(
error
)
{
vm
.
isClick
=
false
vm
.
$message
.
error
(
res
.
message
);
});
}
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录