This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Augcl
/
pet-front
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
fix(订单管理): 在确认操作前检查确认状态
在确认操作前添加了对确认状态的检查,如果未全部确认,则提示用户点击确认。避免用户未完成确认步骤时直接关闭页面。
master
前端-胡立永
1 month ago
parent
8dd2ee59f5
commit
5ec7a0c884
1 changed files
with
9 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
otherPages/orderTakingManage/detail/index.vue
+ 9
- 0
otherPages/orderTakingManage/detail/index.vue
View File
@ -348,6 +348,15 @@
}
const
conform
=
async
(
)
=>
{
if
(
confirmStatus
.
value
.
includes
(
false
)
)
{
uni
.
showToast
(
{
title
:
'请点击确认'
,
icon
:
"none"
}
)
;
return
}
close
(
)
;
/
/
重
置
确
认
状
态
confirmStatus
.
value
=
[
false
,
false
,
false
]
;
Write
Preview
Loading…
Cancel
Save