http.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import http from "@/https/request.js";
  2. export default {
  3. ads(data) {
  4. return http("/api/common/ads", "GET", data);
  5. },
  6. // 地区信息
  7. area_tree(data) {
  8. return http("/api/common/area_tree", "GET", data);
  9. },
  10. // 列表
  11. list(data) {
  12. return http("/api/mobile_controller/list", "POST", data);
  13. },
  14. // 列表
  15. searchList(data) {
  16. return http("/api/mobile_controller/select_num_flow", "POST", data);
  17. },
  18. // 筛选配置
  19. config(data) {
  20. return http("/api/mobile_controller/config", "GET", data);
  21. },
  22. //横幅播报
  23. ordered_show(data) {
  24. return http("/api/mobile_controller/ordered_show", "GET", data);
  25. },
  26. //发送短信
  27. send(data) {
  28. return http("/api/sms/send", "POST", data);
  29. },
  30. //校验短信
  31. check(data) {
  32. return http("/api/sms/check", "POST", data);
  33. },
  34. //商务合作表单
  35. business_form(data) {
  36. return http("/api/common/business_form", "GET", data);
  37. },
  38. //号码详情
  39. show(data) {
  40. return http("/api/mobile_controller/show", "GET", data);
  41. },
  42. //协议相关
  43. agreement(data) {
  44. return http("/api/common/agreement", "GET", data);
  45. },
  46. //下单
  47. apply(data) {
  48. return http("/api/mobile_controller/apply", "POST", {
  49. platform_source: "美美号源",
  50. ...data,
  51. });
  52. },
  53. //预占号码
  54. take(data) {
  55. return http("/api/mobile_controller/take", "GET", data);
  56. },
  57. //系统配置
  58. commonConfig(data) {
  59. return http("/api/common/config", "GET", data);
  60. },
  61. //预定号码
  62. order_no(data) {
  63. return http("/api/mobile_controller/order_no", "GET", data);
  64. },
  65. //订单列表
  66. order_list(data) {
  67. return http("/api/mobile_controller/order_list", "GET", data);
  68. },
  69. //查询物流
  70. logistics(data) {
  71. return http("/api/mobile_controller/logistics", "POST", data);
  72. },
  73. //上传文件
  74. upload(data) {
  75. return http("/api/common/upload", "POST", data);
  76. },
  77. //订单详情
  78. order_detail(data) {
  79. return http("/api/mobile_controller/order_detail", "POST", data);
  80. },
  81. //继续下单
  82. continue_pay(data) {
  83. return http("/api/mobile_controller/continue_pay", "POST", data);
  84. },
  85. //上传开卡资料
  86. upload_identity(data) {
  87. return http("/api/mobile_controller/upload_identity", "POST", data);
  88. },
  89. //退款
  90. refund(data) {
  91. return http("/api/mobile_controller/refund", "POST", data);
  92. },
  93. //意见反馈
  94. feedback(data) {
  95. return http("/api/common/feedback", "POST", data);
  96. },
  97. //登录
  98. dy_login(data) {
  99. // 登录接口修改------传appid使用传的appid(美美号源) 不传使用旧的appid(美美靓号)
  100. return http("/api/user/dy_login", "GET", {
  101. appid: "ttcfceb97350f799ea01",
  102. ...data,
  103. });
  104. },
  105. //足迹列表
  106. history(data) {
  107. return http("/api/history_api/index", "GET", data);
  108. },
  109. //删除足迹
  110. delete(data) {
  111. return http("/api/history_api/delete", "GET", data);
  112. },
  113. //添加足迹
  114. add(data) {
  115. return http("/api/history_api/add", "GET", data);
  116. },
  117. //快手手机号获取登录
  118. KuaishouLogin(data) {
  119. return http("/api/Kuaishou/login", "GET", data);
  120. },
  121. // 用户信息
  122. userIndex(data) {
  123. return http("/api/user/index", "GET", data);
  124. },
  125. //重新提交订单
  126. uploadIdentityFlow(data) {
  127. return http("/api/mobile_controller/upload_identity_flow", "POST", data);
  128. },
  129. };