12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // 获取省市区列表
- const provinceList = '/common/provinces/index';
- // 通过手机号获姓名
- const mobilemapname = '/account/verified/mobilemapname';
- // 实名认证
- const realNameAuth = '/account/verified/realNameAuth';
- // 实名认证/获取验证码
- const getVerifyCodeByParam = '/common/account/getVerifyCodeByParam';
- // 设置支付密码
- const setUpPaymentPassword = '/account/useridentityasset/setUpPaymentPassword';
- // 积分详情
- const pointconfig = '/pointconfig/info'
- // 积分详情 销毁积分数
- const destroyIntegral = '/userordergains/airdropStatistics'
- // 积分转赠计算
- const pointGiveAwayComputer = '/account/useridentityasset/pointGiveAwayComputer'
- // 积分转赠
- const pointGiveAway = '/account/useridentityasset/pointGiveAway'
- // 积分转余额计算
- const pointToBalanceComputer = '/bill/refillCard/pointToBalanceComputer'
- // 积分转余额
- const pointToBalance = '/bill/refillCard/pointToBalance'
- // 积分配置设置查询
- const pointconfigInfo = '/pointconfig/info'
-
- // 余额转赠
- const balanceGiveAway = '/bill/refillCard/balanceGiveAway'
- // 余额明细
- const refillCardInfo = '/bill/refillCard/page'
- // 贡献值明细
- const userbillInfo = '/usergains/userbill/page'
- // 会员充值
- const directBuy = '/order/refillcard/directBuy'
- // 区域代理申请
- const applyareaagentApply = '/applyareaagent/apply'
- // 查看被锁定的区域
- const applyareaagentPage = '/applyareaagent/page'
- // 事业查询
- const operatingInfo = '/account/operating/center/info'
- // 推广查询
- const updatestatistics = '/account/updatestatistics'
- // 事业 我的消费值 平台权益值
- const orderEquity='/order/equity'
- export {
- pointconfig,
- destroyIntegral,
- mobilemapname,
- realNameAuth,
- getVerifyCodeByParam,
- setUpPaymentPassword,
- pointGiveAwayComputer,
- pointGiveAway,
- pointToBalanceComputer,
- pointToBalance,
- pointconfigInfo,
- balanceGiveAway,
- directBuy,
- refillCardInfo,
- userbillInfo,
- applyareaagentApply,
- applyareaagentPage,
- operatingInfo,
- updatestatistics,
- orderEquity
- };
|