34 lines
847 B
JavaScript
34 lines
847 B
JavaScript
const host = 'https://www.szdot.top'
|
|
const baseURL = host + '/flycube.php'
|
|
const listPath = host + '/Data/UploadFiles/category/'
|
|
const spuPath = host + '/Data/UploadFiles/spu/'
|
|
const skuPath = host + '/Data/UploadFiles/sku/'
|
|
const sitePath = host + '/Data/UploadFiles/site/'
|
|
const logoPath = host + '/Data/UploadFiles/logo/'
|
|
export default {
|
|
/**
|
|
* @description: api服务器
|
|
* host 主站
|
|
* api接口地址
|
|
* 分类列表路径
|
|
* spu产品图片路径
|
|
* sku产品图片路径
|
|
* 站点图片路径
|
|
* 商铺logo路径
|
|
*/
|
|
"host": host,
|
|
"baseURL": baseURL,
|
|
"listPath": listPath,
|
|
"spuPath": spuPath,
|
|
"skuPath": skuPath,
|
|
"sitePath": sitePath,
|
|
"logoPath": logoPath,
|
|
/**
|
|
* @description: mqtt服务器
|
|
* host 主站
|
|
*/
|
|
"mqttHost": 'wxs://szdot.top',
|
|
"mqttPort": 8083,
|
|
"mqttUserName": 'admin',
|
|
'mqttPassword': '123456'
|
|
} |