config: 更新域名为 soul.quwanzhi.com

This commit is contained in:
卡若
2026-01-23 05:47:09 +08:00
parent 0a5d470fef
commit e869974341
4 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ const WECHAT_PAY_CONFIG = {
appSecret: '85d3fa31584d06acdb1de4a597d25b7b', // 小程序AppSecret
mchId: '1318592501', // 商户号
mchKey: 'wx3e31b068be59ddc131b068be59ddc2', // API密钥
notifyUrl: 'https://soul.cunbao.net/api/miniprogram/pay/notify', // 支付回调地址
notifyUrl: 'https://soul.quwanzhi.com/api/miniprogram/pay/notify', // 支付回调地址
}
// 生成随机字符串

View File

@@ -6,7 +6,7 @@
App({
globalData: {
// API基础地址
baseUrl: 'https://soul.cunbao.net',
baseUrl: 'https://soul.quwanzhi.com',
// 小程序配置
appId: 'wxb8bbb2b10dec74aa',

View File

@@ -277,7 +277,7 @@ ${id === 'preface' || id === 'epilogue' || id.startsWith('appendix') || id === '
copyLink() {
const userInfo = app.globalData.userInfo
const referralCode = userInfo?.referralCode || ''
const shareUrl = `https://soul.ckb.fit/read/${this.data.sectionId}${referralCode ? '?ref=' + referralCode : ''}`
const shareUrl = `https://soul.quwanzhi.com/read/${this.data.sectionId}${referralCode ? '?ref=' + referralCode : ''}`
wx.setClipboardData({
data: shareUrl,

View File

@@ -105,7 +105,7 @@ Page({
// 复制邀请链接
copyLink() {
const link = `https://soul.ckb.fit/?ref=${this.data.referralCode}`
const link = `https://soul.quwanzhi.com/?ref=${this.data.referralCode}`
wx.setClipboardData({
data: link,
success: () => wx.showToast({ title: '链接已复制', icon: 'success' })