You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 line
1.3 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: 1, label: '已提交', type: 'submitted' },
  13. { key: 2, label: '已拒絕', type: 'rejected' },
  14. { key: 3, label: '已取消', type: 'cancelled' },
  15. { key: 4, label: '已接受', type: 'accepted' },
  16. { key: 5, label: '已確認', type: 'confirmed' },
  17. { key: 6, label: '已付費', type: 'paid' },
  18. { key: 7, label: '已發表', type: 'published' },
  19. { key: 8, label: '已撤銷', type: 'withdrawn' },
  20. ];