account.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import request from '@/utils/request'
  2. //* ******************** 收款账户 *********************
  3. // 收款账户信息查询
  4. export function accountGetById(data) {
  5. return request({
  6. url: '/bank/getById',
  7. method: 'post',
  8. data
  9. })
  10. }
  11. // 选择所属银行查询
  12. export function getSelect(data) {
  13. return request({
  14. url: '/dict/getSelect',
  15. method: 'post',
  16. data
  17. })
  18. }
  19. // 解绑账户
  20. export function bankDelete(data) {
  21. return request({
  22. url: '/bank/delete',
  23. method: 'post',
  24. data
  25. })
  26. }
  27. // 更换账户
  28. export function bankUpdate(data) {
  29. return request({
  30. url: '/bank/update',
  31. method: 'post',
  32. data
  33. })
  34. }
  35. // 绑定账户
  36. export function bankAdd(data) {
  37. return request({
  38. url: '/bank/save',
  39. method: 'post',
  40. data
  41. })
  42. }
  43. // 获取短信验证码
  44. export function getCode(phone,data) {
  45. return request({
  46. url: `/business/getCode?phone=${phone}`,
  47. method: 'post',
  48. data
  49. })
  50. }
  51. // 获取验证码
  52. export function getVerificationImageCaptchaApi(params) {
  53. return request({
  54. url: `/captcha/get/verification/image`,
  55. method: 'get',
  56. params
  57. })
  58. }