1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import manifest from './manifest.json'
- // 应用全局配置
- export default {
- ip: "192.168.10.165:9300",
- //#ifdef APP-PLUS || MP-WEIXIN
- baseUrl: "https://gateWay.usky.cn/prod-api",
- //#endif
- //#ifdef H5
- baseUrl: import.meta.env.MODE === "production" ? `https://${window.location.host}/prod-api` : `http://192.168.10.165:801/dev-api`,
- //#endif
- websiteUrl: "https://qhome.usky.cn",
- // 应用信息
- appInfo: {
- // 应用id
- appid: manifest.appid,
- // 应用名称
- name: manifest.name,
- // 应用版本
- version: uni.getSystemInfoSync().appWgtVersion || uni.getSystemInfoSync().appVersion,
- // 应用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. 永天股份 版权所有",
- // 备案编号
- filingInfo: {
- code: "ICP备案号:沪ICP备09005762号-15A",
- href: "https://beian.miit.gov.cn/#/Integrated/index"
- },
- // 政策协议
- agreements: [
- {
- title: "用户服务协议",
- content: "暂无数据",
- url: "http://file.usky.cn/uskycloud/user_protocol.html",
- },
- {
- title: "隐私政策",
- content: "暂无数据",
- url: "http://file.usky.cn/uskycloud/privacy_protocol.html",
- },
- ],
- },
- };
|