shop-live/api/public.js

22 lines
859 B
JavaScript
Raw Normal View History

2023-10-28 16:31:53 +08:00
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import request from "@/utils/requesta.js";
export function getVersion() {
return request.get("version",{},{noAuth: true});
}
export function commonAuth(data) {
return request.post(
"auth", data, {
noAuth: true
}
);
}