|
@@ -219,6 +219,7 @@ export default {
|
|
},
|
|
},
|
|
//批量上报
|
|
//批量上报
|
|
batchSubmission() {
|
|
batchSubmission() {
|
|
|
|
+ let that = this
|
|
if (this.modification.length > 0) {
|
|
if (this.modification.length > 0) {
|
|
this.$confirm('确定批量上报运单信息?', '提示', {
|
|
this.$confirm('确定批量上报运单信息?', '提示', {
|
|
confirmButtonText: '确定',
|
|
confirmButtonText: '确定',
|
|
@@ -229,13 +230,13 @@ export default {
|
|
batchEscalation({ orderInfoList: this.modification })
|
|
batchEscalation({ orderInfoList: this.modification })
|
|
.then(response => {
|
|
.then(response => {
|
|
if (response.code == 200) {
|
|
if (response.code == 200) {
|
|
- this.$notify({
|
|
|
|
|
|
+ that.$notify({
|
|
title: '成功',
|
|
title: '成功',
|
|
message: '上报成功!',
|
|
message: '上报成功!',
|
|
type: 'success'
|
|
type: 'success'
|
|
})
|
|
})
|
|
- this.modification = []
|
|
|
|
- this.getList()
|
|
|
|
|
|
+ that.modification = []
|
|
|
|
+ that.getList()
|
|
}
|
|
}
|
|
})
|
|
})
|
|
})
|
|
})
|