球星卡微信小程序
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.

48 lines
916 B

4 years ago
4 years ago
4 years ago
  1. import request from '@/common/request.js'
  2. // 关于我们
  3. export async function aboutUs() {
  4. return await request({
  5. url: '/api/v1/content/about_us',
  6. method: 'post'
  7. })
  8. }
  9. // 快速评价的相关协议
  10. export async function gradeAgreement() {
  11. return await request({
  12. url: '/api/v1/content/grade_agreement',
  13. method: 'post'
  14. })
  15. }
  16. // 用户隐私协议
  17. export async function privacyAgreement() {
  18. return await request({
  19. url: '/api/v1/content/privacy_agreement',
  20. method: 'post'
  21. })
  22. }
  23. // 卡砖设计
  24. export async function cardDesign() {
  25. return await request({
  26. url: '/api/v1/content/card_design',
  27. method: 'post'
  28. })
  29. }
  30. // 评级标准
  31. export async function ratingStandard() {
  32. return await request({
  33. url: '/api/v1/content/rating_standard',
  34. method: 'post'
  35. })
  36. }
  37. //更新优惠券
  38. export async function couponUpdate() {
  39. return await request({
  40. url: '/api/v1/coupon_update',
  41. method: 'post'
  42. })
  43. }