project:强制覆盖代码,更新.gitignore文件内容

This commit is contained in:
2025-09-16 17:23:51 +08:00
parent ab9a7279f5
commit 5ad77a857c
97 changed files with 2295 additions and 1751 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ const request = (option) => {
method: option.method,
data: option.data,
header: {
"Content-Type": "application/x-www-form-urlencoded",
"Content-Type": "application/json",
...option.headers,
'appid': appid,
'Authorization': "Bearer " + uni.getStorageSync('token'),
+1 -1
View File
@@ -1,5 +1,5 @@
export const URL = "https://my.gxfs123.com/api" //正式服务器
// export const URL = "https://fansdev.gxfs123.com/api" //测试服务器
// export const URL = "http://192.168.10.76:8080" //本地调试
// export const URL = "http://192.168.5.13:8080" //本地调试
export const appid = "wx2165f0be356ae7a9" //小程序appid
+1 -1
View File
@@ -20,7 +20,6 @@ export const getMyIndexInfo = (data) => {
// 添加押金提现API
export const withdrawDeposit = (orderNo) => {
console.log('调用提现API,订单号:', orderNo)
return request({
url: `/app/withdraw/add/${orderNo}`,
method: 'get',
@@ -131,6 +130,7 @@ export const confirmPaymentAndRent = (orderId) => {
//投诉反馈
export const addUserFeedback = (data) => {
console.log(data);
return request({
url: '/app/feedback/add',
method: 'post',