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

65 lines
1.2 KiB

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