fix(custom): 修复订单列表第三方支付商家bid重复的问题
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-03-22 17:16:20 +08:00
parent 294a889199
commit 65d6737902
5 changed files with 30 additions and 8 deletions

View File

@@ -44,6 +44,9 @@ interface OrderList {
oid: string;
add_time: string;
status: number;
Store: {
bid: string;
};
OrderGoods: GoodsItem[];
count: number;
number: number;
@@ -97,11 +100,10 @@ const tabChange = (index: number) => {
const openPay = async (item: OrderList) => {
isShowPay.value = true;
const mer_info = Taro.getStorageSync("mer_info");
const user_info = Taro.getStorageSync("userInfo");
const data = await getUserPoint({
phone: user_info.data.phone,
bid: mer_info.bid,
bid: item.Store.bid,
});
jfInfo.value = {
jh_info: data.data,