import request from '@/common/request.js' // 关于我们 export async function tipsDetail(id) { return await request({ url: '/api/v1/sys_detail', data:{id:id}, method: 'post' }) } // 关于我们 export async function aboutUs() { return await request({ url: '/api/v1/content/about_us', method: 'post' }) } // 快速评价的相关协议 export async function gradeAgreement() { return await request({ url: '/api/v1/content/grade_agreement', method: 'post' }) } // 用户隐私协议 export async function privacyAgreement() { return await request({ url: '/api/v1/content/privacy_agreement', method: 'post' }) } // 卡砖设计 export async function cardDesign() { return await request({ url: '/api/v1/content/card_design', method: 'post' }) } // 评级标准 export async function ratingStandard() { return await request({ url: '/api/v1/content/rating_standard', method: 'post' }) } //服务及收费标准 export async function getServiceStandard() { return await request({ url: '/api/v1/content/service_standard', method: 'post' }) } //更新优惠券 export async function couponUpdate() { return await request({ url: '/api/v1/coupon_update', method: 'post' }) }