merchapp/java-mall-app-shop-admin/api/agreement.js
2025-05-09 17:16:48 +08:00

22 lines
380 B
JavaScript

import http from '../utils/http';
/**
* 获取用户协议
* @author Seven
* @data 2025-1-6
* @param {
* protocols_key :
* reg_protocols_description
* }
* @returns { }
* @see https://mall.gpxscs.cn/mobile/account/login/protocol
*/
export function GetAgreement(params) {
return http({
url: '/account/login/protocol',
method: 'get',
params,
});
}