| 1234567891011 |
- /** 用户session token */
- export const USER_TOKEN_STORAGE = 'user_token';
- /** 页码列表 */
- export const PAGE_SIZE_LIST = ['10', '30', '50', '80', '100'];
- /** 请求域名 */
- export const NETWORK_URL = 'http://192.168.0.118:9560';
- export const E2E_NETWORK_URL = 'http://e2e.test.cn';
- /** 导出错误提示 */
- export const EXPORT_ERROR_TIPS = '导出错误,请稍后再试';
- /** 接口请求错误提示 */
- export const NETWORK_ERROR_TIPS = '请求失败,请稍后再试';
|