创作者微信小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
278 B

import request from '@/utils/request'
const serviceTitle = '/img'
//GET 传参需要用 params
//POST 传参需要用 data
// 用户授权登录
export function loginWx(data) {
return request({
url: `${serviceTitle}/img/mini/creator/login`,
method: 'post',
data
})
}