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