|
|
@@ -352,14 +352,13 @@ const getOrderPrice = () => {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-watch([selectedGoodsId, orderPriceType], () => {
|
|
|
- console.log(buyOrSell)
|
|
|
+watch([selectedGoodsId, buyOrSell, orderPriceType], () => {
|
|
|
// 商城模式只有买方向
|
|
|
if (selectedGoods.value?.trademode === 53) {
|
|
|
formData.BuyOrSell = BuyOrSell.Buy
|
|
|
formData.PriceMode = PriceMode.Market
|
|
|
}
|
|
|
- // formData.BuyOrSell = buyOrSell
|
|
|
+ formData.BuyOrSell = buyOrSell.value
|
|
|
formData.OrderPrice = getOrderPrice()
|
|
|
})
|
|
|
|