business-type.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. var PurchaseFundWay = {
  2. sum: 3,
  3. base: 2
  4. }
  5. var PurchaseType = {
  6. socialInsurance: 0,
  7. accumulationFund: 1,
  8. socialInsurancePackage: 2,
  9. accumulationFundPackage: 3
  10. }
  11. var PurchasePayFor = {
  12. socialInsurance: '1',
  13. accumulationFund: '2',
  14. socialInsurancePackage: '3',
  15. accumulationFundPackage: '4'
  16. }
  17. var OrderListType = {
  18. orderListTypePurchase: '1',
  19. orderListTypePPD: '2',
  20. orderListTypeSalary: '3',
  21. }
  22. var SalaryOrderStatus = {
  23. salaryOrderStatusNotPay: 1,
  24. salaryOrderStatusPaySuccessAndNotBack: 2,
  25. salaryOrderStatusPaySuccessAndBackFail: 5,
  26. salaryOrderStatusBack: 4,
  27. salaryOrderStatusRefund: 11,//全额退款
  28. salaryOrderStatusReturnBack: 12//原路返还
  29. }
  30. var NetworkErrorCode = {
  31. success: 200,
  32. connectErrorMessage: 201,
  33. connectError: 202,
  34. netwrokMiss: 203
  35. }
  36. var ResultServeyType = {
  37. resultServeyTypeSB: '1',
  38. resultServeyTypeAF: '2',
  39. resultServeyTypePack: '3',
  40. resultServeyTypeNo: '4'
  41. }
  42. module.exports = {
  43. PurchaseFundWay: PurchaseFundWay,
  44. PurchaseType: PurchaseType,
  45. PurchasePayFor: PurchasePayFor,
  46. OrderListType: OrderListType,
  47. SalaryOrderStatus: SalaryOrderStatus,
  48. NetworkErrorCode: NetworkErrorCode,
  49. ResultServeyType: ResultServeyType
  50. }