Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

71 linhas
4.0 KiB

  1. export const idDocType = [
  2. { key: 1, label: '護照', type: 'passport' },
  3. { key: 2, label: '香港身份證', type: 'HKID' },
  4. { key: 3, label: '內地身份證', type: 'CNID' },
  5. { key: 4, label: '專業執業證書', type: 'otherCert' }
  6. ];
  7. export const district = ['北區', '長洲區', '大埔區', '大嶼山區', '東區', '觀塘區', '黃大仙區', '九龍城區', '葵青區', '南區', '南丫島區',
  8. '坪洲區', '荃灣區', '沙田區', '深水埗區', '屯門區', '灣仔區', '西貢區', '油尖旺區', '元朗區', '中西區'];
  9. export const country = ["香港","內地","澳門"];
  10. export const accountFilter = [{ id: 1, key: 1, label: 'Active', type: 'active' }, { id: 2, key: 2, label: 'Locked', type: 'locked' }, { id: 3, key: 3, label: 'Not verified', type: 'notVerified' }];
  11. export const publicNoticeStatic = [
  12. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  13. { key: 1, labelCht: '處理中', label: 'Processing', type: 'processing' }, // submitted and reviewed
  14. { key: 2, labelCht: '待付款', label: 'Pending Payment', type: 'confirmed' },
  15. { key: 3, labelCht: '待發布', label: 'To be published', type: 'paid' },
  16. { key: 4, labelCht: '已完成', label: 'Completed', type: 'completed' },
  17. { key: 5, labelCht: '不接受', label: 'Not accepted', type: 'notAccepted' },
  18. { key: 6, labelCht: '需重新提交', label: 'Re-submit Required', type: 'resubmit' },
  19. { key: 7, labelCht: '已取消', label: 'Cancelled', type: 'cancelled' },
  20. { key: 8, labelCht: '已撤銷', label: 'Withdrawn', type: 'withdrawn' },
  21. ];
  22. export const publicNoticeStatic_Creditor = [
  23. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  24. { key: 1, labelCht: '處理中', label: 'Processing', type: 'processing' }, // submitted and reviewed
  25. { key: 2, labelCht: '待發布', label: 'To be published', type: 'confirmed' },
  26. { key: 3, labelCht: '待付款', label: 'Pending Payment', type: 'published' },
  27. { key: 4, labelCht: '已完成', label: 'Completed', type: 'completed' },
  28. { key: 5, labelCht: '不接受', label: 'Not accepted', type: 'notAccepted' },
  29. { key: 6, labelCht: '需重新提交', label: 'Re-submit Required', type: 'resubmit' },
  30. { key: 7, labelCht: '已取消', label: 'Cancelled', type: 'cancelled' },
  31. { key: 8, labelCht: '已撤銷', label: 'Withdrawn', type: 'withdrawn' },
  32. ];
  33. export const publicNoticeStatic_GLD = [
  34. { key: 0, label: 'All', type: 'all' },
  35. { key: 1, label: 'Submitted', type: 'submitted' },
  36. { key: 2, label: 'Reviewed', type: 'reviewed' },
  37. { key: 3, label: 'Confirmed', type: 'confirmed' },
  38. { key: 3, label: 'Paid', type: 'paid' },
  39. { key: 4, label: 'Published', type: 'published' },
  40. { key: 5, label: 'Completed', type: 'completed' },
  41. { key: 6, label: 'Not accepted', type: 'notAccepted' },
  42. { key: 7, label: 'Re-submit required', type: 'resubmit' },
  43. { key: 8, label: 'Cancelled', type: 'cancelled' },
  44. { key: 9, label: 'Withdrawn', type: 'withdrawn' },
  45. ];
  46. export const groupTitle = [
  47. { key: 1, labelCht: 'A - 私人帳單', label: 'A - Private Bill', title: 'Private Bill', type: 'A'},
  48. { key: 2, labelCht: 'B - 公司條例', label: 'B - Companies Ordinance', title: 'Companies Ordinance', type: 'B' },
  49. { key: 3, labelCht: 'C - 高等法院', label: 'C - High Court', title: 'High Court', type: 'C' },
  50. { key: 4, labelCht: 'D - 通知', label: 'D - Notices', title: 'Notices', type: 'D' },
  51. { key: 5, labelCht: 'E - 其他', label: 'E - Miscellaneous (Companies)', title: 'Miscellaneous  (Companies)', type: 'E' },
  52. ];
  53. export const proofPrice = [
  54. { label: 'Single Column $182', value: 182, colCount:1},
  55. { label: 'Double Column $364', value: 364, colCount:2},
  56. ];
  57. export const proofStatus = [
  58. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  59. { key: 1, labelCht: '已回覆', label:'Replied', type: 'T' }, // submitted and reviewed
  60. { key: 2, labelCht: '未回覆', label:'Pending Reply', type: 'F' },
  61. ];