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.

common.js 492B

1234567891011121314151617181920212223
  1. // 支付状态
  2. export const payMentStatus = {
  3. SUCCESS: '已支付',
  4. PAYING: '支付中',
  5. FAILED: '支付失败',
  6. UNPAY: '待支付',
  7. CLOSED: '已关闭',
  8. CANCELED: '已撤销',
  9. REFUND: '转入退费',
  10. }
  11. // 金额类型
  12. export const payType = {
  13. HANDLE: '办理费',
  14. MARGIN: '保证金',
  15. PRESTORE: '预存金',
  16. }
  17. //订单来源
  18. export const orderSource = {
  19. WECHAT: '九州ETC小程序',
  20. SERVICE_HALL: '线上营业厅',
  21. WEB: '后台PC端',
  22. H5: 'H5页面'
  23. }