更新工作台页面,优化支付方式展示,修复支付方式名称错误,并调整相关API接口路径

This commit is contained in:
zmj 2024-06-21 14:58:17 +08:00
parent 57b6505bf4
commit 8df6961a45
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
</li> </li>
<li> <li>
<div>支付方式</div> <div>支付方式</div>
<div>{{ detailData.pay_type }}</div> <div>{{ detailData.pay_type_name }}</div>
</li> </li>
<li v-if="orderType"> <li v-if="orderType">
<div>支付时间</div> <div>支付时间</div>
@ -196,7 +196,7 @@ const orderInfoCongig = ref(
}, },
{ {
name: "支付方式", name: "支付方式",
value: props.detailData?.pay_type value: props.detailData?.pay_type_name
}, },
] ]
}, },