You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
981 B
24 lines
981 B
// 请求接口地址 如果没有配置自动获取当前网址路径
|
|
// https://zyyd.henanbangding.com:8443 正式地址
|
|
// https://yaochangtest.first.xinzhidi.cn/ 测试地址
|
|
const VUE_APP_API_URL = `${'https://zyyd.henanbangding.com:8443'}/api`;
|
|
const VUE_APP_API_COUPON_URL = `${'https://zyyd.henanbangding.com:8443'}`;
|
|
const VUE_APP_WS_URL = `ws:${'https://zyyd.henanbangding.com:8443'}/ws`;
|
|
// const VUE_UPLOD_URL = `${'https://zyyd.henanbangding.com:8443'}/`;
|
|
const VUE_UPLOD_URL = ``;
|
|
const VUE_KF_URL = `${'https://yaochangkf.three.xinzhidi.cn'}`;
|
|
const VUE_APP_DOWNLOAD= `${'http://publish.jtyqt.com/4vsqhr'}`
|
|
|
|
const Setting = {
|
|
// 接口请求地址
|
|
apiBaseURL: VUE_APP_API_URL,
|
|
wsSocketUrl: VUE_APP_WS_URL,
|
|
uplodBaseURL: VUE_UPLOD_URL,
|
|
couponBaseURL: VUE_APP_API_COUPON_URL,
|
|
kfURL: VUE_KF_URL,
|
|
kfToken: '2f007727088ad963fc332be0b4acde6a',
|
|
app_download:VUE_APP_DOWNLOAD,
|
|
};
|
|
localStorage.setItem('uplodBaseURL', VUE_UPLOD_URL)
|
|
|
|
export default Setting;
|
|
|