merchapp/java-mall-app-shop-admin/api/agreement.js
2025-05-08 10:16:20 +08:00

23 lines
449 B
JavaScript

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)
})
})
}