agreementType.js 177 B

1234567891011
  1. /**
  2. * 协议类型枚举
  3. */
  4. export const AgreementType = {
  5. USER_AGREEMENT: 1,
  6. PRIVACY_POLICY: 2,
  7. PERFORMER_GUIDE: 3,
  8. SHIPPING_AGREEMENT: 4
  9. }
  10. export default AgreementType