123456789101112131415161718192021 |
- import request from '@/common/request.js'
- /**
- * 调用微信登录
- * @param id
- * @returns {*}
- */
- export function wxLogin(data) {
- return request.post('/api/common/wx/login', data)
- }
- /**
- * 获取微信登录的URL
- * @param id
- * @returns {*}
- */
- export function apiGetWechatUrl(data) {
- return request.post('/api/common/wx/get-url', data)
- }
|