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.
18 lines
613 B
18 lines
613 B
/**
|
|
* Shopro全局配置文件 v1.4.0
|
|
*/
|
|
|
|
// 接口根域名 https://demo.shopro.top
|
|
export const BASE_URL = 'https://fx.njrenzhou.cn'
|
|
|
|
// 接口路径
|
|
export const API_URL = `${BASE_URL}/addons/shopro/`
|
|
|
|
// 全局网络图片地址变量,css背景图片地址变量在uni.scss中定义
|
|
export const IMG_URL = 'https://fx.njrenzhou.cn'
|
|
|
|
//高德地图开发者Web服务key,逆坐标解析必须
|
|
export const MAP_KEY = '213ff5240e12efbd4c2ec6b7e2f02c6c'
|
|
|
|
//后台是否开通直播权限,根据情况在manifest.json中引入直播插件,并在pages.json中打开直播页面
|
|
export const HAS_LIVE = false
|
|
|