You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
manghe/api/public.js

280 lines
4.8 KiB

// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import request from "@/utils/request.js";
import wechat from "@/libs/wechat.js";
/**
* 获取微信sdk配置
* @returns {*}
*/
export function getWechatConfig() {
return request.get(
"wechat/config", {
url: wechat.signLink()
}, {
noAuth: true
}
);
}
/**
* 获取微信sdk配置
* @returns {*}
*/
export function wechatAuth(code, spread, login_type) {
return request.get(
"wechat/auth", {
code,
spread,
login_type
}, {
noAuth: true
}
);
}
/**
* 获取登录授权login
*
*/
export function getLogo() {
return request.get('wechat/get_logo', {}, {
noAuth: true
});
}
/**
* 小程序用户登录
* @param data object 小程序用户登陆信息
*/
export function login(data) {
return request.post("wechat/mp_auth", data, {
noAuth: true
});
}
/**
* 静默授权
* @param {Object} data
*/
export function silenceAuth(data) {
//#ifdef MP
return request.get("v2/wechat/silence_auth", data, {
noAuth: true
});
//#endif
//#ifdef H5
return request.get("v2/wechat/auth_type", data, {
noAuth: true
});
//#endif
}
/**
* 分享
* @returns {*}
*/
export function getShare() {
return request.get("share", {}, {
noAuth: true
});
}
/**
* 公众号登录
* @returns {*}
*/
export function wechatAuthLogin(data) {
return request.get("v2/wechat/auth_login", data, {
noAuth: true
});
}
/**
* 获取关注海报
* @returns {*}
*/
export function follow() {
return request.get("wechat/follow", {}, {
noAuth: true
});
}
/**
* code生成用户
* @returns {*}
*/
export function authType(data) {
return request.get("v2/routine/auth_type", data, {
noAuth: true
});
}
/**
* 授权登录
* @returns {*}
*/
export function authLogin(data) {
return request.get("v2/routine/auth_login", data, {
noAuth: true
});
}
/**
* 获取图片base64
* @retins {*}
* */
export function imageBase64(image, code) {
return request.post(
"image_base64", {
image: image,
code: code
}, {
noAuth: true
}
);
}
/**
* 自动复制口令功能
* @returns {*}
*/
export function copyWords() {
return request.get("copy_words", {}, {
noAuth: true
});
}
/**
* 获取商城是否强制绑定手机号
*/
export function getShopConfig() {
return request.get('v2/bind_status', {}, {
noAuth: true
});
}
/**
* 小程序绑定手机号
* @param {Object} data
*/
export function routineBindingPhone(data) {
return request.post('v2/routine/auth_binding_phone', data, {
noAuth: true
});
}
/**
* 小程序绑定手机号
* @param {Object} data
*/
export function wechatBindingPhone(data) {
return request.post('v2/wechat/auth_binding_phone', data, {
noAuth: true
});
}
/**
* 小程序手机号登录
* @param {Object} data
*/
export function phoneLogin(data) {
return request.post('v2/routine/phone_login', data, {
noAuth: true
});
}
/**
* 小程序用户登录
* @param data object 小程序用户登陆信息
*/
export function routineLogin(data) {
return request.get("v2/wechat/routine_auth", data, {
noAuth: true
});
}
/**
* 获取微信sdk配置
* @returns {*}
*/
export function wechatAuthV2(code, spread) {
return request.get(
"v2/wechat/auth", {
code,
spread
}, {
noAuth: true
}
);
}
/**
* 获取组件底部菜单
* @param data object 获取组件底部菜单
*/
export function getNavigation(data) {
return request.get("navigation", data, {
noAuth: true
});
}
export function getSubscribe() {
return request.get("subscribe", {}, {
noAuth: true
});
}
/**
* 获取版本信息
* @param 系统类型
*/
export function getUpdateInfo(type) {
return request.get("get_new_app/" + type, {}, {
noAuth: true
});
}
/**
* 获取首页DIY数据版本号
*
*/
export function getVersion(name) {
return request.get(`v2/diy/get_version/${name}`, {}, {
noAuth: true
});
}
/**
* 获取商品分类版本号
*
*/
export function getCategoryVersion(name) {
return request.get(`category_version`, {}, {
noAuth: true
});
}
/**
* 配置信息
*
*/
export function basicConfig(name) {
return request.get(`basic_config`, {}, {
noAuth: true
});
}
/**
* 后台版本信息
*
*/
export function getSystemVersion() {
return request.get(`version`, {}, {
noAuth: true
});
}