Browse Source

fix(订单管理): 在确认操作前检查确认状态

在确认操作前添加了对确认状态的检查,如果未全部确认,则提示用户点击确认。避免用户未完成确认步骤时直接关闭页面。
master
前端-胡立永 1 month ago
parent
commit
5ec7a0c884
1 changed files with 9 additions and 0 deletions
  1. +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];


Loading…
Cancel
Save