Dining_Hall/config.js

37 lines
929 B
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 11:09:35 +08:00
// #ifdef H5
baseUrl: '/dev-api',
// #endif
// #ifdef APP-PLUS
baseUrl: 'http://192.168.2.47: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-02 14:28:03 +08:00
name: "dining_hall_app",
2024-12-17 09:13:52 +08:00
// 应用版本
version: "1.1.0",
// 应用logo
logo: "/static/logo.png",
// 官方网站
site_url: "http://ruoyi.vip",
// 政策协议
agreements: [{
title: "隐私政策",
url: "https://ruoyi.vip/protocol.html"
},
{
title: "用户服务协议",
url: "https://ruoyi.vip/protocol.html"
}
]
}
}