Dining_Hall/config.js

45 lines
1.3 KiB
JavaScript
Raw Normal View History

2024-12-17 09:13:52 +08:00
// 应用全局配置
module.exports = {
2024-12-18 08:56:39 +08:00
// baseUrl: 'https://vue.ruoyi.vip/prod-api',
2024-12-24 13:02:43 +08:00
// baseUrl: 'http://192.168.0.39:21995',
2025-01-16 16:25:17 +08:00
// #ifdef H5
2025-02-19 09:34:34 +08:00
// baseUrl: '/canteen/dev-api',
2025-02-21 10:03:35 +08:00
baseUrl: '/dev-api',
2025-02-19 09:34:34 +08:00
// baseUrl: 'http://192.168.0.244:38380',//测试
// baseUrl: 'http://192.168.2.82:58080',//张天强
2025-02-21 10:03:35 +08:00
// baseUrl: 'http://192.168.2.55:58080',//董高文
2025-02-19 09:34:34 +08:00
// baseUrl: 'http://192.168.1.69:58080',//董高文
// baseUrl: 'http://192.168.2.83:58080',//盛旭
2025-01-16 16:25:17 +08:00
// #endif
// #ifdef APP-PLUS
// baseUrl: 'http://192.168.2.47:58080',
baseUrl: 'http://192.168.2.209:58080',
// #endif
2024-12-19 13:40:10 +08:00
// baseUrl: 'http://localhost:8080',
2024-12-18 13:52:12 +08:00
uploadFileUrl: '/app/common/appUploadFile',
2024-12-24 13:02:43 +08:00
// fileUrl: 'http://192.168.0.39:21995/statics', // 图片预览
2025-01-16 11:09:35 +08:00
fileUrl: 'http://192.168.2.47:58080/statics', // 图片预览
2024-12-17 09:13:52 +08:00
// 应用信息
appInfo: {
// 应用名称
2025-01-16 16:25:17 +08:00
name: 'dining_hall_app',
2024-12-17 09:13:52 +08:00
// 应用版本
2025-01-16 16:25:17 +08:00
version: '1.1.0',
2024-12-17 09:13:52 +08:00
// 应用logo
2025-01-16 16:25:17 +08:00
logo: '/static/logo.png',
2024-12-17 09:13:52 +08:00
// 官方网站
2025-01-16 16:25:17 +08:00
site_url: 'http://ruoyi.vip',
2024-12-17 09:13:52 +08:00
// 政策协议
2025-01-16 16:25:17 +08:00
agreements: [
{
title: '隐私政策',
url: 'https://ruoyi.vip/protocol.html'
2024-12-17 09:13:52 +08:00
},
{
2025-01-16 16:25:17 +08:00
title: '用户服务协议',
url: 'https://ruoyi.vip/protocol.html'
2024-12-17 09:13:52 +08:00
}
]
}
}