You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
965 B
32 lines
965 B
const origin = window.location.origin//协议、域名和端口号
|
|
let systemConfig = {
|
|
// 请求路径
|
|
baseUrl: `${origin}/api`,
|
|
// 上传路径
|
|
uploadUrl: `${origin}/api/admin-api/infra/file/upload`,
|
|
// 自定义接口路径
|
|
interfaceUrl: `${origin}/magic/web/index.html`,
|
|
// 积木报表请求路径
|
|
jmreportBaseUrl: `${origin}`,
|
|
// 查看质检报告环境
|
|
reportUrl: `${origin}`,
|
|
// 租户配置
|
|
tenant: '["成都"]',
|
|
systermUpdateAlert: true,
|
|
systermUpdateUrl: `${origin}/`,
|
|
//是否需要验证码
|
|
needCode:false,
|
|
//是否需要PDA下载链接
|
|
pdaUrl: false,
|
|
|
|
// logo图标
|
|
logoUrl: '/logo_white_blue.png',
|
|
// logo图标
|
|
logoUrlWhite: '/logo_white.png',
|
|
// 项目名称
|
|
projectName: '富维海拉智慧工厂管理平台',
|
|
// 浏览器上方图标
|
|
iconUrl: '/logo1.png',
|
|
// 租戶列表
|
|
tenantList:'[{"text":"长春1379","value":1},{"text":"成都1397","value":2},{"text":"长春2379","value":3}]'
|
|
}
|
|
|