diff --git a/pages/SecondPhase/EmptyBoxOutStore.vue b/pages/SecondPhase/EmptyBoxOutStore.vue
index a635c5d..60b47a7 100644
--- a/pages/SecondPhase/EmptyBoxOutStore.vue
+++ b/pages/SecondPhase/EmptyBoxOutStore.vue
@@ -79,6 +79,7 @@
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import UpTop from '@/components/upTop.vue'
+ import { confirmAction } from '@/utils/utils.js'
import {twoQueryBoxIvt, twoBoxOut} from '@/utils/getData3.js'
export default {
components: {
@@ -134,12 +135,17 @@
this.selectedNum = this.checkArr.length
}
},
- async _twoBoxOut () {
- this.disabled = true
+ async handleConfirm() {
if (!this.checkArr.length) {
- this.disabled = false
return
}
+ const isConfirmed = await confirmAction("确认操作", "确定要执行此操作吗?")
+ if (isConfirmed) {
+ this._twoPdaVehicleIn()
+ }
+ },
+ async _twoBoxOut () {
+ this.disabled = true
try {
let res = await twoBoxOut(this.checkArr)
uni.showToast({
diff --git a/pages/SecondPhase/finished/BoxWeight.vue b/pages/SecondPhase/finished/BoxWeight.vue
index 3f13d36..67289e5 100644
--- a/pages/SecondPhase/finished/BoxWeight.vue
+++ b/pages/SecondPhase/finished/BoxWeight.vue
@@ -4,7 +4,7 @@
-
+
{{$t('filter.box-no')}}
@@ -12,7 +12,7 @@
-
+
{{$t('grid.weight')}}
@@ -22,7 +22,7 @@
-
+
@@ -30,6 +30,7 @@