common.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * 公共模块
  3. */
  4. import {get,post} from './http'
  5. /**
  6. * 获取所有可以申请的品种权限列表
  7. */
  8. export const apiGetPermissionList=()=>{
  9. return get('/public/get_apply_variety_list')
  10. }
  11. /**
  12. * 获取分享用的小程序码
  13. * @param CodeScene 页面所需参数
  14. * @param CodePage 小程序页面路径
  15. */
  16. export const apiGetWechatQRCode=params=>{
  17. return post('/pc/getSunCode',params)
  18. }
  19. /**
  20. * web端微信登录
  21. */
  22. export const apiWxLoginInWeb=params=>{
  23. return get('/pc/login',params)
  24. }
  25. /**
  26. * 获取手机验证码
  27. * @param mobile 手机号
  28. * @param area_num 手机号区号
  29. */
  30. export const apiGetSMSCode=params=>{
  31. return get('/user/get_sms_code',params)
  32. }
  33. /**
  34. * 获取邮箱验证码
  35. * @param email 邮箱
  36. */
  37. export const apiGetEmailCode=params=>{
  38. return get('/user/get_email_code',params)
  39. }
  40. /**
  41. * 手机号/邮箱登录
  42. * @param area_num 手机号区号
  43. * @param bind_type 1手机号 2邮箱
  44. * @param email
  45. * @param mobile
  46. * @param verify_code
  47. */
  48. export const apiUserLogin=params=>{
  49. return post('/user/login',params)
  50. }
  51. /**
  52. * 获取海报
  53. * @param code_page 分享海报小程序页面地址
  54. * @param code_scene 小程序页面参数
  55. * @param source 来源 activity_detail(活动详情) activity_list(活动列表)
  56. * special_column_list(专栏列表) special_column_detail(专栏详情)
  57. * report_list(报告列表) report_detail(报告详情)
  58. * chart_list(图库列表) chart_detail(图库详情)
  59. * @param version
  60. * @param pars 生成海报需要的页面参数
  61. */
  62. export const apiGetPoster=params=>{
  63. return post('/public/get_share_poster',{version:'3.0',...params})
  64. }