Files
yusheng-h5/until/config.js

46 lines
1.4 KiB
JavaScript
Raw Permalink Normal View History

2025-08-11 11:06:07 +08:00
//api 请求路径 本地
2025-11-29 11:33:18 +08:00
// http://1.13.101.98 正式
2025-10-30 18:27:45 +08:00
// https://vespa.qxyushen.top 正式api
// https://test.vespa.qxyushen.top 测试api
2025-12-03 18:59:18 +08:00
// 新 https://yushengapi.qxyushen.top
2025-10-23 16:04:28 +08:00
const BASE_NAME = '羽声语音'
2025-12-03 18:59:18 +08:00
const BASE_URL = "https://test.vespa.qxyushen.top";
const BASE_IMAGE_URL = "https://test.vespa.qxyushen.top/h5/image/"
2025-10-23 16:04:28 +08:00
// 前端访问域名
// tmdh.xscmmidi.site 测试
// mdh.xscmmidi.site 正式
2025-11-29 11:33:18 +08:00
const PRIMARY_BGURL = `${BASE_IMAGE_URL}fy_bg.jpg`;
2025-10-23 16:04:28 +08:00
// 工会管理员
2025-11-29 11:33:18 +08:00
const PRIMARY_BLYURL = `${BASE_IMAGE_URL}fy_gly.png`;
const wealth_url = `${BASE_IMAGE_URL}wealth.png`;
const charm_url = `${BASE_IMAGE_URL}charm.png`;
const kefu_url = `${BASE_IMAGE_URL}kefu.png`;
const singer_url = `${BASE_IMAGE_URL}singer.png`;
const unicon_url = `${BASE_IMAGE_URL}uniconBack.png`;
const coin_url = `${BASE_IMAGE_URL}union/coin.png`;
const hongbao_url = `${BASE_IMAGE_URL}union/hongbao.png`;
const gift_url = `${BASE_IMAGE_URL}union/gift.png`;
const new_unionUrl =`${BASE_IMAGE_URL}union/uniconBG.png`;
const not_unionUrl =`${BASE_IMAGE_URL}union/noUnion.png`;
2025-08-11 11:06:07 +08:00
//IM app_key
const IM_APP_TOKEN="67962a777e2b13bc6a4bde3ccd389d1e";
2025-10-30 18:27:45 +08:00
const BASR_COLOR = '#3ABC6D';
2025-10-23 16:04:28 +08:00
export default {
2025-08-11 11:06:07 +08:00
BASE_URL,
2025-10-23 16:04:28 +08:00
IM_APP_TOKEN,
PRIMARY_BGURL,
PRIMARY_BLYURL,
BASR_COLOR,
BASE_NAME,
wealth_url,
charm_url,
2025-11-29 11:33:18 +08:00
kefu_url,
singer_url,
unicon_url,
coin_url,
hongbao_url,
gift_url,
new_unionUrl,
not_unionUrl
2025-08-11 11:06:07 +08:00
}