2023-09-20 21:33:11 +08:00
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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登录接口路径
|
|
|
|
*/
|
|
|
|
host: 'https://szdot.top',
|
|
|
|
baseURL: 'https://szdot.top/flycube.php',
|
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'
|
|
|
|
}
|