first:修正上传地址,优化界面,尝试对接微信支付分免押(50%)

This commit is contained in:
2025-06-27 18:38:10 +08:00
parent bdde4ae2cf
commit 8ac1666e6b
55 changed files with 3142 additions and 1656 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
// export const URL = "https://unifans.gxfs123.com"
export const URL = "http://127.0.0.1:8080"
export const URL = "https://my.gxfs123.com/api"
// export const URL = "http://192.168.10.30:8080"
export const appid = "wxe752f45e7f7aa271"
export const appid = "wx2165f0be356ae7a9"
+9 -1
View File
@@ -146,13 +146,21 @@ export const forcefOpenEmptyGrid = (deviceNo) => {
// 通过订单号获取订单信息
export const getOrderByOrderNo = (orderNo) => {
console.log('通过订单号获取订单信息:', orderNo)
return request({
url: `/app/order/byOrderNo/${orderNo}`,
method: 'get',
hideLoading: true
})
}
// 通过订单号获取支付分订单信息
export const getOrderByOrderNoScore = (orderNo) => {
console.log('通过订单号获取支付分订单信息',orderNo);
return request({
url: `/app/wx-payment/score/create/${orderNo}`,
method: 'get',
hideLoading: true
})
}
// 更新订单套餐信息
export const updateOrderPackage = (data) => {