Dining_Hall/config.js

39 lines
986 B
JavaScript

// 应用全局配置
module.exports = {
// baseUrl: 'https://vue.ruoyi.vip/prod-api',
// baseUrl: 'http://192.168.0.39:21995',
// #ifdef H5
baseUrl: '/dev-api',
// #endif
// #ifdef APP-PLUS
// baseUrl: 'http://192.168.2.47:58080',
baseUrl: 'http://192.168.2.209:58080',
// #endif
// baseUrl: 'http://localhost:8080',
uploadFileUrl: '/app/common/appUploadFile',
// fileUrl: 'http://192.168.0.39:21995/statics', // 图片预览
fileUrl: 'http://192.168.2.47:58080/statics', // 图片预览
// 应用信息
appInfo: {
// 应用名称
name: 'dining_hall_app',
// 应用版本
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'
}
]
}
}