47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
// 应用全局配置
 | 
						|
module.exports = {
 | 
						|
  // baseUrl: 'https://vue.ruoyi.vip/prod-api',
 | 
						|
  // baseUrl: 'http://192.168.0.39:21995',
 | 
						|
  // #ifdef  H5
 | 
						|
  // baseUrl: '/canteen/dev-api',
 | 
						|
  baseUrl: '/dev-api',
 | 
						|
  // baseUrl: 'http://192.168.0.244:38380',//测试
 | 
						|
  // baseUrl: 'http://192.168.0.244:48380',//测试 
 | 
						|
  // baseUrl: 'http://192.168.0.244:58580',//测试
 | 
						|
  // baseUrl: 'http://192.168.2.82:58080',//张天强
 | 
						|
  // baseUrl: 'http://192.168.2.69:58080',//董高文
 | 
						|
  // baseUrl: 'http://192.168.0.176:48380',//董高文
 | 
						|
  // baseUrl: 'http://192.168.2.75:48380',//盛旭
 | 
						|
  // #endif
 | 
						|
  // #ifdef  APP-PLUS
 | 
						|
  // baseUrl: 'http://192.168.2.47:58080',
 | 
						|
  baseUrl: 'http://192.168.0.244:38380',//测试
 | 
						|
  // #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'
 | 
						|
      }
 | 
						|
    ]
 | 
						|
  }
 | 
						|
}
 |