pda_uniapp/config.js

39 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// 应用全局配置
module.exports = {
//###### baseUrl访问后端的地址#######
//###### 发布版本也不要来改这里,可以启动后在连接配置界面改 #######
//###### 【IP端口配置】界面为解决一次发布多处使用 #######
//###### 如发布一个APP可配置访问本地测试服务 127 或 现场实际 IP #######
baseUrl: 'http://127.0.0.1:9292',
//页面是否开启验证码:针对于登录页和注册页
captchaEnabled: false,
// 应用信息
appInfo: {
// 是否调试模式:根据不同模式,渲染按钮界面的菜单
is_debug: false,
// 应用名称
name: "wms_app",
// 应用版本
version: "1.1.0",
// 应用logo
logo: "/static/logo.png",
// 官方网站
official_mail: "tostary@yeah.net",
// WMS的访问地址
site_url: "http://127.0.0.1:8080",
//版权信息
copyright: "Copyright © 2024 rrs.wms All Rights Reserved.",
//热线电话
hot_tel: "400-999-9999",
// 政策协议
agreements: [{
title: "隐私政策",
url: ""
},
{
title: "用户服务协议",
url: ""
}
]
}
}