123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- var PurchaseFundWay = {
- sum: 3,
- base: 2
- }
- var PurchaseType = {
- socialInsurance: 0,
- accumulationFund: 1,
- socialInsurancePackage: 2,
- accumulationFundPackage: 3
- }
- var PurchasePayFor = {
- socialInsurance: '1',
- accumulationFund: '2',
- socialInsurancePackage: '3',
- accumulationFundPackage: '4'
- }
- var OrderListType = {
- orderListTypePurchase: '1',
- orderListTypePPD: '2',
- orderListTypeSalary: '3',
- }
- var SalaryOrderStatus = {
- salaryOrderStatusNotPay: 1,
- salaryOrderStatusPaySuccessAndNotBack: 2,
- salaryOrderStatusPaySuccessAndBackFail: 5,
- salaryOrderStatusBack: 4,
- salaryOrderStatusRefund: 11,//全额退款
- salaryOrderStatusReturnBack: 12//原路返还
- }
- var NetworkErrorCode = {
- success: 200,
- connectErrorMessage: 201,
- connectError: 202,
- netwrokMiss: 203
- }
- var ResultServeyType = {
- resultServeyTypeSB: '1',
- resultServeyTypeAF: '2',
- resultServeyTypePack: '3',
- resultServeyTypeNo: '4'
- }
- module.exports = {
- PurchaseFundWay: PurchaseFundWay,
- PurchaseType: PurchaseType,
- PurchasePayFor: PurchasePayFor,
- OrderListType: OrderListType,
- SalaryOrderStatus: SalaryOrderStatus,
- NetworkErrorCode: NetworkErrorCode,
- ResultServeyType: ResultServeyType
- }
|