enum.ts 736 B

1234567891011121314151617181920
  1. export const dateType = [
  2. { value: 'day', label: '日', },
  3. { value: 'week', label: '周', },
  4. { value: 'month', label: '月', },
  5. ];
  6. export const requiredFields = [
  7. { field: 'platformNumber', title: '平台编号' },
  8. { field: 'platformName', title: '平台名称' },
  9. { field: 'country', title: '国家' },
  10. { field: 'brandName', title: '品牌' },
  11. { field: 'user', title: '填写人' },
  12. { field: 'operater', title: '运营' },
  13. { field: 'currencyCode', title: '平台币种' },
  14. { field: 'currencyCodePlatform', title: '回款/余额币种' },
  15. { field: 'line', title: '线路' },
  16. { field: 'ipaddress', title: 'IP地址' },
  17. { field: 'company', title: '注册公司' },
  18. { field: 'platform', title: '平台' },
  19. ];