|
@@ -430,9 +430,10 @@ export default {
|
|
|
})
|
|
|
this.spinning = false
|
|
|
} else {
|
|
|
+ const _this = this
|
|
|
// 弹出确认提示信息,可跳过继续提交
|
|
|
if (b.length) {
|
|
|
- this.$confirm({
|
|
|
+ _this.$confirm({
|
|
|
title: '提示',
|
|
|
centered: true,
|
|
|
class: 'confirm-center',
|
|
@@ -446,12 +447,12 @@ export default {
|
|
|
</ol>
|
|
|
</div>,
|
|
|
onOk () {
|
|
|
- this.verificationSuccess(isBatch)
|
|
|
+ _this.verificationSuccess(isBatch)
|
|
|
}
|
|
|
})
|
|
|
- this.spinning = false
|
|
|
+ _this.spinning = false
|
|
|
} else {
|
|
|
- this.verificationSuccess(isBatch)
|
|
|
+ _this.verificationSuccess(isBatch)
|
|
|
}
|
|
|
}
|
|
|
} else {
|