Files
aishangjia-uniapp/api/wx-login.js
2023-08-04 13:14:48 +08:00

13 lines
283 B
JavaScript
Executable File

import http from './index.js';
import { fileUrl } from '@/config.js';
// 获取微信openId
export const getWxQrCode = () => http.get('/wx-login/getQRCode')
export const getWxQrCodeFile = () => http.get('/file-preview/getQRCode')
export default {
getWxQrCode,
getWxQrCodeFile
}