修改活动报名显示问题,升级版本bug,支付正在开发

This commit is contained in:
zhouyanli
2026-07-11 11:11:43 +08:00
parent be4bae64d1
commit 3124f95cb3
8 changed files with 172 additions and 72 deletions

View File

@@ -167,6 +167,10 @@ export const getopenIdByCode = (data) => {
export const getUnionPayTn = (data) => {
return post('/api/topUp/unionPay/getTn', data)
}
// 获取日照银行小程序拉起参数
export const getBankMiniProgramParams = (data) => {
return post('/api/pay/yidang/create', data)
}
// 缴费记录查询
export const getTopupRecordWithStat = (data) => {
return get(
@@ -244,8 +248,8 @@ export const getOwnerList = (data) => {
}
// 查询版本信息
export const getAppVersion = (platform, channel) => {
return get(`/api/app/version/${platform}/${channel}`)
export const getAppVersion = (platform, channel,appChannel) => {
return get(`/api/app/version/${platform}/${channel}/${appChannel}`)
}
// 检查是否需要更新
export const checkAppUpdate = (data) => {

View File

@@ -1,6 +1,7 @@
let baseUrl = '';
if (process.env.NODE_ENV === 'development') {
baseUrl = 'http://192.168.1.222:8080'; // 开发环境
// baseUrl = 'http://wuyeapi.ckdzkj.com';
} else {
baseUrl = 'https://wuyeapi.ckdzkj.com'; // 生产环境
}