login.ts 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import request from "../plugins/request";
  2. /** 登录或注册 */
  3. export const api_login = (params: any) => {
  4. return request({
  5. url: `/edu-app/userlogin`,
  6. noToken: true,
  7. method: "POST",
  8. requestType: 'form',
  9. data: params,
  10. } as any);
  11. };
  12. /** 获取用户信息 */
  13. export const api_queryUserInfo = (params: any) => {
  14. return request({
  15. url: `/edu-app/user/getUserInfo`,
  16. method: "get",
  17. data: params,
  18. } as any);
  19. };
  20. /** 获取商品信息 */
  21. export const api_shopProduct = (params: any) => {
  22. return request({
  23. url: `/edu-app/open/shop/product`,
  24. method: "get",
  25. data: params,
  26. } as any);
  27. };
  28. /** 用户下单 */
  29. export const api_executeOrder = (params: any) => {
  30. return request({
  31. url: `/edu-app/userPaymentOrder/executeOrder`,
  32. method: "post",
  33. data: params,
  34. } as any);
  35. };
  36. /** 用户下单 */
  37. export const api_executePayment = (params: any) => {
  38. return request({
  39. url: `/edu-app/open/userOrder/executePayment`,
  40. method: "post",
  41. data: params,
  42. } as any);
  43. };
  44. /** 查询待支付信息 */
  45. export const api_userPaymentOrderUnpaid = (params: any) => {
  46. return request({
  47. url: `/edu-app/userPaymentOrder/unpaid`,
  48. method: "get",
  49. data: params,
  50. } as any);
  51. };
  52. /** 获取配置参数 */
  53. export const api_queryByParamName = (params: any) => {
  54. return request({
  55. url: `/edu-app/sysParamConfig/queryByParamName`,
  56. method: "get",
  57. data: params,
  58. } as any);
  59. };
  60. /** 订单列表 */
  61. export const api_studentOrderPage = (params: any) => {
  62. return request({
  63. url: `/edu-app/userPaymentOrder/studentOrderPage`,
  64. method: "post",
  65. data: params,
  66. } as any);
  67. };
  68. /** 订单详情 */
  69. export const api_userPaymentOrderDetail = (orderNo: string) => {
  70. return request({
  71. url: `/edu-app/userPaymentOrder/detail/${orderNo}`,
  72. method: "get"
  73. } as any);
  74. };
  75. /** 订单取消退款 */
  76. export const api_userPaymentCancelRefund = (userRefundOrderId: string) => {
  77. return request({
  78. url: `/edu-app/userPaymentOrder/cancelRefund/${userRefundOrderId}`,
  79. method: "post"
  80. } as any);
  81. };
  82. /** 订单申请退款 */
  83. export const api_userPaymentOrderRefundPayment = (data: any) => {
  84. return request({
  85. url: `/edu-app/userPaymentOrder/refundPayment`,
  86. method: "post",
  87. data
  88. } as any);
  89. };