Browse Source

fix(create-order): 修复对公转账方式下支付信息显示逻辑

- 在 PaymentInfo.vue 组件中,为支付方式不为对公转账时才显示支付信息
- 通过在判断条件中增加对 pay_way 的检查,避免对公转账方式下显示错误的支付信息

Signed-off-by: tangshizhe <48740614+tangshizhe@users.noreply.github.com>
tangshizhe 1 month ago
parent
commit
951c4296c4

+ 1 - 1
src/views/create-order/components/order-detail-submodule/PaymentInfo.vue

@@ -280,7 +280,7 @@ export default {
       const orderData = this.orderData || {};
       const { pay_time, pay_money, order_status, pay_way, procedures_money } = orderData;
 
-      if (!this.isBackstageOrder) {
+      if (!this.isBackstageOrder && pay_way !== '对公转账') {
         // 构建基础支付信息对象
         const baseInfo = {
           pay_time: pay_time ?? '-',