personal-center.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // 获取省市区列表
  2. const provinceList = '/common/provinces/index';
  3. // 通过手机号获姓名
  4. const mobilemapname = '/account/verified/mobilemapname';
  5. // 实名认证
  6. const realNameAuth = '/account/verified/realNameAuth';
  7. // 实名认证/获取验证码
  8. const getVerifyCodeByParam = '/common/account/getVerifyCodeByParam';
  9. // 设置支付密码
  10. const setUpPaymentPassword = '/account/useridentityasset/setUpPaymentPassword';
  11. // 积分详情
  12. const pointconfig = '/pointconfig/info'
  13. // 积分详情 销毁积分数
  14. const destroyIntegral = '/userordergains/airdropStatistics'
  15. // 积分转赠计算
  16. const pointGiveAwayComputer = '/account/useridentityasset/pointGiveAwayComputer'
  17. // 积分转赠
  18. const pointGiveAway = '/account/useridentityasset/pointGiveAway'
  19. // 积分转余额计算
  20. const pointToBalanceComputer = '/bill/refillCard/pointToBalanceComputer'
  21. // 积分转余额
  22. const pointToBalance = '/bill/refillCard/pointToBalance'
  23. // 积分配置设置查询
  24. const pointconfigInfo = '/pointconfig/info'
  25. // 余额转赠
  26. const balanceGiveAway = '/bill/refillCard/balanceGiveAway'
  27. // 余额明细
  28. const refillCardInfo = '/bill/refillCard/page'
  29. // 贡献值明细
  30. const userbillInfo = '/usergains/userbill/page'
  31. // 会员充值
  32. const directBuy = '/order/refillcard/directBuy'
  33. // 区域代理申请
  34. const applyareaagentApply = '/applyareaagent/apply'
  35. // 查看被锁定的区域
  36. const applyareaagentPage = '/applyareaagent/page'
  37. // 事业查询
  38. const operatingInfo = '/account/operating/center/info'
  39. // 推广查询
  40. const updatestatistics = '/account/updatestatistics'
  41. // 事业 我的消费值 平台权益值
  42. const orderEquity='/order/equity'
  43. export {
  44. pointconfig,
  45. destroyIntegral,
  46. mobilemapname,
  47. realNameAuth,
  48. getVerifyCodeByParam,
  49. setUpPaymentPassword,
  50. pointGiveAwayComputer,
  51. pointGiveAway,
  52. pointToBalanceComputer,
  53. pointToBalance,
  54. pointconfigInfo,
  55. balanceGiveAway,
  56. directBuy,
  57. refillCardInfo,
  58. userbillInfo,
  59. applyareaagentApply,
  60. applyareaagentPage,
  61. operatingInfo,
  62. updatestatistics,
  63. orderEquity
  64. };