12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // 应用全局配置
- export default {
- //#ifdef APP-PLUS || MP-WEIXIN
- baseUrl: "http://manager.usky.cn/prod-api",
- //#endif
- //#ifdef H5
- baseUrl: import.meta.env.MODE === "production" ? "http://" + window.location.host + "/prod-api" : "http://172.16.120.165:13200/prod-api",
- //#endif
- websiteUrl: "https://qhome.usky.cn",
- // NODE_ENV=devlopment
- // 应用信息
- appInfo: {
- // 应用名称
- name: "usky-app-mobile",
- // 应用版本
- version: "2.0.0",
- // 应用logo
- logo: "/static/logo.png",
- // 官网邮箱
- email: "admin@chinausky.com",
- // 服务热线
- hotline: "021-65376655",
- // 官方网站
- site_url: "http://www.usky.cn/",
- // 版权
- copyright:"Copyright © 2021- 2025 Usky. All Rights Reserved. 永天股份 版权所有",
- // 政策协议
- agreements: [
- {
- title: "用户服务协议",
- content: "暂无数据",
- url: "http://file.usky.cn/statics/protocol.html",
- },
- {
- title: "隐私政策",
- content: "暂无数据",
- url: "http://file.usky.cn/statics/protocol.html",
- },
- ],
- },
- };
|