球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.0 KiB

4 years ago
4 years ago
4 years ago
  1. import request from '@/common/request.js'
  2. // 添加新的送评订单
  3. export async function addGrading(data) {
  4. return await request({
  5. url: '/api/v1/new_grading',
  6. method: 'post',
  7. data
  8. })
  9. }
  10. // 送评详情
  11. export async function gradingDetail(order_id) {
  12. return await request({
  13. url: '/api/v1/grading_detail',
  14. method: 'post',
  15. data: {
  16. order_id
  17. }
  18. })
  19. }
  20. // 评级轨迹
  21. export async function gradingLogs(order_id) {
  22. return await request({
  23. url: '/api/v1/grading_logs',
  24. method: 'post',
  25. data: {
  26. order_id
  27. }
  28. })
  29. }
  30. // 评级费用明细
  31. export async function gradingPayment(order_id) {
  32. return await request({
  33. url: '/api/v1/grading_payment',
  34. method: 'post',
  35. data: {
  36. order_id
  37. }
  38. })
  39. }
  40. // 快速评级列表
  41. export async function quickList() {
  42. return await request({
  43. url: '/api/v1/quick_list',
  44. method: 'post'
  45. })
  46. }
  47. // 评卡查询
  48. export async function ratingSearch(series_num) {
  49. return await request({
  50. url: '/api/v1/series_num_search',
  51. method: 'post',
  52. data: {
  53. series_num
  54. }
  55. })
  56. }