kcw-wx-web/src/settings.js

47 lines
958 B
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 = {
/**
* @description 网站标题
*/
title: 'WMS管理系统',
/**
* @description 是否显示 tagsView
*/
tagsView: true,
/**
* @description 固定头部
*/
fixedHeader: true,
/**
* @description 记住密码状态下的token在Cookie中存储的天数默认1天
*/
tokenCookieExpires: 1,
/**
* @description 记住密码状态下的密码在Cookie中存储的天数默认1天s
*/
passCookieExpires: 1,
/**
* @description token key
*/
TokenKey: 'ELADMIN-TOEKN',
/**
* @description 请求超时时间毫秒默认2分钟
*/
timeout: 1200000,
/**
* @description 是否显示logo
*/
sidebarLogo: false,
/**
* 是否显示设置的底部信息
*/
showFooter: false,
/**
* 底部文字支持html语法
*/
footerTxt: '© 2023 <a href="http://baidu.com" target="_blank">WMS系统</a>',
/**
* 备案号
*/
caseNumber: ''
}