|
@@ -1017,7 +1017,7 @@ export default {
|
|
|
delete queryParams.arrivalTime
|
|
|
}
|
|
|
const routeData = this.$router.resolve({
|
|
|
- path: '/api/blade-land/order/acct-export', //跳转目标窗口的地址
|
|
|
+ path: '/api/blade-land/order/bulkCargo-export', //跳转目标窗口的地址
|
|
|
query: {
|
|
|
...queryParams //括号内是要传递给新窗口的参数
|
|
|
}
|
|
@@ -1026,7 +1026,7 @@ export default {
|
|
|
}).catch(() => {
|
|
|
this.$message({
|
|
|
type: 'info',
|
|
|
- message: '已取消' //
|
|
|
+ message: '已取消'
|
|
|
});
|
|
|
})
|
|
|
},
|
|
@@ -1230,7 +1230,7 @@ export default {
|
|
|
},
|
|
|
incidentalConfirm(row) {
|
|
|
incidental({
|
|
|
- itemId: row.itemId,
|
|
|
+ orderId: row.orderId,
|
|
|
plateNo: row.plateNo,
|
|
|
type: '1'
|
|
|
}).then(res => {
|
|
@@ -1241,12 +1241,12 @@ export default {
|
|
|
},
|
|
|
incidentalClick() {
|
|
|
if (this.confirmStatus == 0) {
|
|
|
- incidentalConfirm({itemId: this.collectionList[0].itemId}).then(res => {
|
|
|
+ incidentalConfirm({orderId: this.collectionList[0].orderId}).then(res => {
|
|
|
this.$message.success("确认成功");
|
|
|
this.onLoad(this.page)
|
|
|
})
|
|
|
} else {
|
|
|
- cancelConfirm({itemId: this.collectionList[0].itemId}).then(res => {
|
|
|
+ cancelConfirm({orderId: this.collectionList[0].orderId}).then(res => {
|
|
|
this.$message.success("取消成功");
|
|
|
this.onLoad(this.page)
|
|
|
})
|