constant.js 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. export const QINIU_URL = 'https://qiniu.bms16.com/';
  2. // 租赁周期
  3. export const LEASE_TYPE = {
  4. 'hour': 4, // 时租
  5. 'day': 1, // 日租
  6. 'week': 6, // 周租
  7. 'month': 2, // 月租
  8. 'season': 7, // 季租
  9. }
  10. export const LEASE_TYPE_ARR = [
  11. { label: '时租', value: LEASE_TYPE.hour, type: 'short', unit: '小时' },
  12. { label: '日租', value: LEASE_TYPE.day, type: 'short', unit: '天' },
  13. { label: '周租', value: LEASE_TYPE.week, type: 'long', unit: '周' },
  14. { label: '月租', value: LEASE_TYPE.month, type: 'long', unit: '月' },
  15. { label: '季租', value: LEASE_TYPE.season, type: 'long', unit: '季' }
  16. ]
  17. export const MAX_LIMITS = {
  18. 4: { max: 24, message: '最多可以选择24小时' },
  19. 1: { max: 30, message: '最多可以选择30天' },
  20. 2: { max: 12, message: '最多可以选择12个月' },
  21. 6: { max: 4, message: '最多可以选择4周' },
  22. 7: { max: 4, message: '最多可以选择4季度' },
  23. };
  24. //不同appid对应不同的首页顶部导航栏字体 门店名字
  25. export const APP_ID_NAME = [
  26. {app_name: '小众出行' , img_url: 'https://qiniu.bms16.com/FgUti3mvD9L4U-LzTNF70PP1BI5E', wx_id: 'wx868f4e5130ef2636',ali_id:'2021004109662240'},
  27. {app_name: '名师傅出行' , img_url: 'https://qiniu.bms16.com/FtApW97AbZn6PLd2IyAojrpKwCrQ', wx_id: 'wx56681a7f2fe324ed',ali_id:'2021004194666931'},
  28. ]