1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- "use strict";
- const sheep_request_index = require("../../request/index.js");
- const SocialApi = {
- // 获得社交用户
- getSocialUser: (type) => {
- return sheep_request_index.request({
- url: "/member/social-user/get",
- method: "GET",
- params: {
- type
- },
- custom: {
- showLoading: false
- }
- });
- },
- // 社交绑定
- socialBind: (type, code, state) => {
- return sheep_request_index.request({
- url: "/member/social-user/bind",
- method: "POST",
- data: {
- type,
- code,
- state
- },
- custom: {
- custom: {
- showSuccess: true,
- loadingMsg: "绑定中",
- successMsg: "绑定成功"
- }
- }
- });
- },
- // 社交绑定
- socialUnbind: (type, openid) => {
- return sheep_request_index.request({
- url: "/member/social-user/unbind",
- method: "DELETE",
- data: {
- type,
- openid
- },
- custom: {
- showLoading: false,
- loadingMsg: "解除绑定",
- successMsg: "解绑成功"
- }
- });
- }
- };
- exports.SocialApi = SocialApi;
|