...
|
...
|
@@ -113,11 +113,15 @@ export default { |
|
|
break;
|
|
|
}
|
|
|
case orderActionsMap.CANCEL_ORDER.name: {
|
|
|
const confirmInfo = await this.cancelTradeConfirmInfo({
|
|
|
let confirmInfo = await this.cancelTradeConfirmInfo({
|
|
|
orderCode,
|
|
|
owner,
|
|
|
});
|
|
|
|
|
|
if (Array.isArray(confirmInfo)) {
|
|
|
confirmInfo = { confirmDesc: '确定取消求购' };
|
|
|
}
|
|
|
|
|
|
this.$createConfirmDialog(
|
|
|
{
|
|
|
confirmBtn: { text: '取消订单', style: { color: '#D0021B' } },
|
...
|
...
|
|