2024-04-26 14:04:01 +08:00
|
|
|
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/'
|
|
|
|
export default {
|
2023-09-20 21:33:11 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @description: 全局title
|
|
|
|
*/
|
|
|
|
title: '送餐系统',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @description: api服务器
|
|
|
|
* host 主站
|
|
|
|
* api接口地址
|
2023-10-18 15:58:44 +08:00
|
|
|
* api飞机控制终端接口路径
|
|
|
|
* api小程序后台接口路径
|
2023-09-20 21:33:11 +08:00
|
|
|
* api登录接口路径
|
|
|
|
*/
|
2024-04-26 14:04:01 +08:00
|
|
|
host: host,
|
|
|
|
baseURL: baseURL,
|
|
|
|
listPath: listPath,
|
|
|
|
spuPath: spuPath,
|
|
|
|
skuPath: skuPath,
|
2023-10-18 15:58:44 +08:00
|
|
|
apiPlanePath: '/mpApi/Plane/',
|
|
|
|
apiAdminPath: '/mpApi/Admin/',
|
2023-09-20 21:33:11 +08:00
|
|
|
apiLoginPath: '/mpApi/Login/',
|
|
|
|
/**
|
|
|
|
* @description: mqtt服务器
|
|
|
|
* mqttHost 地址
|
|
|
|
* mqttPort 端口
|
|
|
|
* mqttUserName 用户名
|
|
|
|
* mqttPassword 密码
|
|
|
|
*/
|
|
|
|
mqttHost: 'wss://szdot.top',
|
|
|
|
mqttPort: 8083,
|
|
|
|
mqttUserName: 'admin',
|
|
|
|
mqttPassword: '123456'
|
|
|
|
}
|