import http from '../utils/http' /** * 获取用户协议 * @author Seven * @data 2025-1-6 * @returns { } * @see https://mall.gpxscs.cn/mobile/account/login/protocol */ export function GetAgreement (params){ params.isFilter = true return new Promise((resolve, reject) => { http({ url:'/account/login/protocol', method:'get', params, }).then(res=>{ console.log('res',res); resolve(res) }) }) }