2025-08-11 11:06:07 +08:00
|
|
|
|
|
|
|
|
//api 请求路径 本地
|
2025-10-23 16:04:28 +08:00
|
|
|
// http://md.xscmmidi.site 正式api
|
|
|
|
|
// http://tmd.xscmmidi.site 测试api
|
|
|
|
|
const BASE_NAME = '羽声语音'
|
|
|
|
|
const BASE_URL = "https://vespa.qxyushen.top";
|
|
|
|
|
// 前端访问域名
|
|
|
|
|
// tmdh.xscmmidi.site 测试
|
|
|
|
|
// mdh.xscmmidi.site 正式
|
|
|
|
|
const PRIMARY_BGURL = "https://vespa.qxyushen.top/h5/image/fy_bg.jpg";
|
|
|
|
|
// 工会管理员
|
|
|
|
|
const PRIMARY_BLYURL = "https://vespa.qxyushen.top/h5/image/fy_gly.png";
|
|
|
|
|
const wealth_url = "https://vespa.qxyushen.top/h5/image/wealth.png";
|
|
|
|
|
const charm_url = "https://vespa.qxyushen.top/h5/image/charm.png";
|
|
|
|
|
const kefu_url = "https://vespa.qxyushen.top/h5/image/kefu.png";
|
2025-08-11 11:06:07 +08:00
|
|
|
//IM app_key
|
|
|
|
|
const IM_APP_TOKEN="67962a777e2b13bc6a4bde3ccd389d1e";
|
2025-10-23 16:04:28 +08:00
|
|
|
const BASR_COLOR = '#6C49E4';
|
|
|
|
|
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,
|
|
|
|
|
kefu_url
|
2025-08-11 11:06:07 +08:00
|
|
|
}
|