dl_mer_mer_admin/src/api/authInformation.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2025-03-04 15:59:12 +08:00
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import request from '@/utils/request';
/**
* 获取版权信息
*/
export function copyrightInfoApi() {
return request({
url: '/admin/merchant/copyright/get/company/info',
method: 'get',
});
}
/**
* @description 账号登录检测
*/
export function accountDetectionApi(data) {
return request({
url: '/admin/merchant/login/account/detection',
method: 'post',
data,
});
}
/**
* 获取移动端域名
*/
export function frontDomainApi() {
return request({
url: '/publicly/config/get/front/domain',
method: 'get',
});
}