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

21 lines
422 B
JavaScript

import http from '../utils/http';
import config from '../config/config';
/**
* 获取隐私协议
* @author Seven
* @data 2025-1-28
* @param { protocols_key : 'reg_description'}
* @returns { }
* @see https://mall.gpxscs.cn/mobile/account/login/protoco
*/
export function GetProtoco(params) {
return http({
url: '/account/login/protocol',
method: 'get',
params,
baseURL: config.baseApi,
});
}