123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- 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/wx_silence_auth", data, {
- noAuth: true
- });
- //#endif
- }
- /**
- * 分享
- * @returns {*}
- */
- export function getShare() {
- return request.get("share", {}, {
- noAuth: true
- });
- }
- /**
- * 获取关注海报
- * @returns {*}
- */
- export function follow() {
- return request.get("wechat/follow", {}, {
- 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 getUserPhone(data) {
- return request.post('v2/auth_bindind_phone', 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
- });
- }
|