您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

113 行
5.6 KiB

  1. export const idDocType = [
  2. { key: 1, label: 'passport', type: 'passport' },
  3. { key: 2, label: 'HKIDcard', type: 'HKID' },
  4. { key: 3, label: 'mainlandIDCard', type: 'CNID' },
  5. { key: 4, label: 'proCert', type: 'otherCert' }
  6. ];
  7. export const district = (intl) =>{
  8. return [
  9. 'islandCombo', 'kwaiTsingCombo', 'northCombo', 'saiKungCombo',
  10. 'shaTinCombo', 'taiPoCombo', 'tsuenWanCombo', 'tuenMunCombo',
  11. 'yuenLongCombo', 'kowloonCityCombo', 'kwunTongCombo', 'shamShuiPoCombo',
  12. 'wongTaiSinCombo', 'yauTsimMongCombo', 'centralAndWesternCombo', 'easternCombo',
  13. 'southernCombo', 'wanChaiCombo', 'lantauIslandCombo', 'lammaIslandCombo',
  14. 'pengChauCombo'
  15. ].map((district) => intl.formatMessage({id: district}));
  16. };
  17. export const country = (intl) => {
  18. return ["hongKong", "mainland", "macau"]
  19. .map((country) => intl.formatMessage({ id: country }));
  20. };
  21. 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' }];
  22. export const publicNoticeStatic = [
  23. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  24. { key: 1, labelCht: '處理中', label: 'Processing', type: 'processing' }, // submitted and reviewed
  25. { key: 2, labelCht: '待付款', label: 'Pending Payment', type: 'confirmed' },
  26. { key: 3, labelCht: '待發布', label: 'To be published', type: 'paid' },
  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_Creditor = [
  34. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  35. { key: 1, labelCht: '處理中', label: 'Processing', type: 'processing' }, // submitted and reviewed
  36. { key: 2, labelCht: '待發布', label: 'To be published', type: 'confirmed' },
  37. { key: 3, labelCht: '待付款', label: 'Pending Payment', type: 'published' },
  38. { key: 4, labelCht: '已完成', label: 'Completed', type: 'completed' },
  39. { key: 5, labelCht: '不接受', label: 'Not accepted', type: 'notAccepted' },
  40. { key: 6, labelCht: '需重新提交', label: 'Re-submit Required', type: 'resubmit' },
  41. { key: 7, labelCht: '已取消', label: 'Cancelled', type: 'cancelled' },
  42. { key: 8, labelCht: '已撤銷', label: 'Withdrawn', type: 'withdrawn' },
  43. ];
  44. export const publicNoticeStatic_GLD = [
  45. { key: 0, label: 'All', type: 'all' },
  46. { key: 1, label: 'Submitted', type: 'submitted' },
  47. { key: 2, label: 'Reviewed', type: 'reviewed' },
  48. { key: 3, label: 'Confirmed', type: 'confirmed' },
  49. { key: 3, label: 'Paid', type: 'paid' },
  50. { key: 4, label: 'Published', type: 'published' },
  51. { key: 5, label: 'Completed', type: 'completed' },
  52. { key: 6, label: 'Not accepted', type: 'notAccepted' },
  53. { key: 7, label: 'Re-submit required', type: 'resubmit' },
  54. { key: 8, label: 'Cancelled', type: 'cancelled' },
  55. { key: 9, label: 'Withdrawn', type: 'withdrawn' },
  56. ];
  57. export const groupTitle = [
  58. { key: 1, labelCht: 'A1 - 私人帳單', label: 'A1 - Private Bill', title: 'Private Bill', type: 'A'},
  59. { key: 2, labelCht: 'A2 - ???', label: 'A2 - Stock Shares', title: 'Stock Shares', type: 'A'},
  60. { key: 3, labelCht: 'B - 公司條例', label: 'B - Companies Ordinance', title: 'Companies Ordinance', type: 'B' },
  61. { key: 4, labelCht: 'C - 高等法院', label: 'C - High Court', title: 'High Court', type: 'C' },
  62. { key: 5, labelCht: 'D - 通知', label: 'D - Notices', title: 'Notices', type: 'D' },
  63. { key: 6, labelCht: 'E - 其他', label: 'E - Miscellaneous (Companies)', title: 'Miscellaneous  (Companies)', type: 'E' },
  64. ];
  65. export const proofPrice = [
  66. { label: 'Single Column $182', value: 182, colCount:1},
  67. { label: 'Double Column $364', value: 364, colCount:2},
  68. ];
  69. export const proofStatus = [
  70. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  71. { key: 1, labelCht: '已回覆', label:'Replied', type: 'T' }, // submitted and reviewed
  72. { key: 2, labelCht: '未回覆', label:'Pending Reply', type: 'F' },
  73. ];
  74. export const paymentStatus = [
  75. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  76. { key: 1, labelCht: '成功', label:'Success', type: 'APPR' },
  77. { key: 2, labelCht: '拒絕', label:'Reject', type: 'REJT' },
  78. { key: 3, labelCht: '取消', label:'Cancelled', type: 'CANC' },
  79. { key: 4, labelCht: '進行中', label:'In Progress', type: 'INPR' },
  80. ];
  81. export const denmandNoteStatus = [
  82. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  83. { key: 1, labelCht: '待辦', label:'Pending', type: 'pending' },
  84. { key: 2, labelCht: '待支付', label:'To be Paid', type: 'to be paid' },
  85. { key: 3, labelCht: '已付費', label:'Paid', type: 'paid' },
  86. ];
  87. export const denmandNoteStatus_Public = [
  88. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  89. { key: 2, labelCht: '待支付', label:'To be Paid', type: 'to be paid' },
  90. { key: 3, labelCht: '已付費', label:'Paid', type: 'paid' },
  91. ];
  92. export const CreditorStatus = [
  93. { key: 0, labelCht: '全部', label: 'All', type: 'all' },
  94. { key: 1, labelCht: '債權人', label:'Creditor', type: 'true' },
  95. { key: 2, labelCht: '非債權人', label:'No-Creditor', type: 'false' },
  96. ];