fix(custom): 修复订单列表第三方支付商家bid重复的问题
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user