12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import request from '@/utils/request'
- //获取二维码
- export function getQrCode(deviceId) {
- return request({
- url: '/qw/login/getQrCode/' + deviceId,
- method: 'get'
- })
- }
- // 二维码
- export function verify(data) {
- return request({
- url: '/qw/login/verify',
- method: 'post',
- data:data
- })
- }
- export function getQwUser(deviceId) {
- return request({
- url: '/qw/login/getQwUserInfo/' + deviceId,
- method: 'get'
- })
- }
- //企微退出登录
- export function qwLoginOut(deviceId) {
- let data={deviceId:deviceId};
- return request({
- url: '/qw/login/ban',
- method: 'post',
- data:data
- })
- }
|