12345678910111213141516171819202122232425262728293031323334353637 |
- // 应用全局配置
- module.exports = {
- baseUrl: 'https://zxyzhsq.qs163.cn/prod-api',
- // baseUrl: 'https://zhsqhf.qs163.cn/prod-api',
- // baseUrl: 'http://111.39.53.163:16300/prod-api',
- // baseUrl: 'http://192.168.101.245:8056',
- // baseUrl: 'http://192.168.101.86:8090',
- // baseUrl: 'http://10.90.90.52:8065',
- // baseUrl: 'http://10.90.90.53:8065',
- // shareurl: 'http://192.168.101.147:9091',
- shareurl: 'https://zhsqhf.qs163.cn',
- baseName:'智慧社区用户端',
- Clientid:'428a8310cd442757ae699df5d894f051',//
- grantType:'password',//
- userType:'app_user',//app_user:用户端,app_staff:物管端
- // 应用信息
- appInfo: {
- // 应用名称
- name: "智慧社区",
- // 应用版本
- 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"
- }
- ]
- }
- }
|