123456789101112131415161718192021222324252627282930313233343536 |
- // 应用全局配置
- module.exports = {
- // baseUrl: 'https://zhsq.qs163.cn/prod-api',
- // baseUrl: 'https://zhsqhf.qs163.cn/prod-api',
- // baseUrl: 'http://47.99.82.249:5011/prod-api',
- baseUrl: 'http://192.168.101.245:8077',
- // baseUrl: 'http://192.168.101.168:8074',
- // baseUrl: 'http://10.90.90.52:8065',
- // baseUrl: 'http://10.90.90.53:8065',
- // baseUrlimg: 'http://114.99.127.243:2001',
- 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"
- }
- ]
- }
- }
|