...
|
...
|
@@ -133,12 +133,16 @@ export default { |
|
|
orderCode,
|
|
|
},
|
|
|
},
|
|
|
reportType: 'buy',
|
|
|
}),
|
|
|
}).show();
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
case orderActionsMap.PAY_DEPOSIT.name: {
|
|
|
// 是否是求购
|
|
|
const isAskForBuy = status === 7;
|
|
|
|
|
|
this.$createOrderPayType({
|
|
|
orderCode,
|
|
|
price: parseFloat(bidDepositInfo.depositAmount).toFixed(2),
|
...
|
...
|
@@ -150,6 +154,7 @@ export default { |
|
|
owner: 'buy',
|
|
|
},
|
|
|
},
|
|
|
reportType: isAskForBuy ? 'qiugou_buy' : 'buy',
|
|
|
}),
|
|
|
}).show();
|
|
|
break;
|
...
|
...
|
@@ -209,7 +214,11 @@ export default { |
|
|
orderCode,
|
|
|
onCloseAction() {},
|
|
|
onConfirmAction: async price => {
|
|
|
const { isOk, errMsg = '', bidData } = await that.confirmChangePrice({
|
|
|
const {
|
|
|
isOk,
|
|
|
errMsg = '',
|
|
|
bidData,
|
|
|
} = await that.confirmChangePrice({
|
|
|
price: price,
|
|
|
orderCode,
|
|
|
});
|
...
|
...
|
@@ -225,17 +234,20 @@ export default { |
|
|
name: isDetail ? 'buyOrderDetail' : 'OrderList',
|
|
|
params: this.$route.params,
|
|
|
},
|
|
|
reportType: 'buy',
|
|
|
}),
|
|
|
}).show();
|
|
|
} else {
|
|
|
if (errMsg) {
|
|
|
that.$createToast({
|
|
|
type: 'alert',
|
|
|
txt: errMsg,
|
|
|
}).show();
|
|
|
that
|
|
|
.$createToast({
|
|
|
type: 'alert',
|
|
|
txt: errMsg,
|
|
|
})
|
|
|
.show();
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
}).show();
|
|
|
break;
|
|
|
}
|
...
|
...
|
|