common.js 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import request from './request'
  2. /*
  3. * 获取区域信息
  4. * */
  5. export const getChinaArea = () => request({
  6. method: 'GET',
  7. url: '/area'
  8. })
  9. /*
  10. * 获取网点列表
  11. * */
  12. export const getBankList = (id) => request({
  13. method: 'GET',
  14. url: '/home/bank/bankList',
  15. params: {
  16. id
  17. }
  18. })
  19. /*
  20. * 短信发送
  21. * */
  22. export const sendSMS = (cellphone, type = 0, captcha) => request({
  23. method: 'GET',
  24. url: '/sendMsg',
  25. params: {
  26. cellphone,
  27. type,
  28. captcha
  29. }
  30. })
  31. /*
  32. * 文件上传
  33. * */
  34. export const uploadFile = (formData) => request({
  35. headers: {
  36. 'Content-Type': 'multipart/form-data'
  37. },
  38. method: 'POST',
  39. url: '/upload',
  40. data: formData
  41. })
  42. /*
  43. * 获取产品信息
  44. * */
  45. export const getProductDetail = (id) => request({
  46. method: 'GET',
  47. url: '/home/product/detail',
  48. params: {
  49. id
  50. }
  51. })