1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import request from '@/sheep/request';
- const AuthUtil = {
- // 使用手机 + 验证码登录
- smsLogin: (data) => {
- return request({
- url: '/app-api/member/auth/sms-login',
- method: 'POST',
- data,
- custom: {
- showSuccess: true,
- loadingMsg: '登录中',
- successMsg: '登录成功',
- },
- });
- },
- // 发送手机验证码
- sendSmsCode: (mobile, scene) => {
- return request({
- url: '/app-api/member/auth/send-sms-code',
- method: 'POST',
- data: {
- mobile,
- scene,
- },
- custom: {
- loadingMsg: '发送中',
- showSuccess: true,
- successMsg: '发送成功',
- },
- });
- },
- // 登出系统
- logout: () => {
- return request({
- url: '/app-api/member/auth/logout',
- method: 'POST',
- });
- },
- // 创建微信 JS SDK 初始化所需的签名
- createWeixinMpJsapiSignature: (url) => {
- return request({
- url: '/app-api/member/auth/create-weixin-jsapi-signature',
- method: 'POST',
- params: {
- url
- },
- custom: {
- showError: false,
- showLoading: false,
- },
- })
- },
- };
- export default AuthUtil;
|