constants.ts 480 B

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