/** * 系统接口模块 */ import { get } from './request' /** * 获取用户协议 * @returns {Promise} */ export function getAgreement() { return get('/system/getAgreement') } /** * 获取隐私政策 * @returns {Promise} */ export function getPrivacy() { return get('/system/getPrivacy') } /** * 获取关于我们 * @returns {Promise} */ export function getAbout() { return get('/system/getAbout') } /** * 获取联系我们信息(客服二维码) * @returns {Promise} */ export function getContactInfo() { return get('/system/getContactInfo') } export default { getAgreement, getPrivacy, getAbout, getContactInfo }