[盘债计算器]

This commit is contained in:
2023-06-21 17:04:42 +08:00
commit f2e1454a83
37 changed files with 4165 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/**
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
import { request } from '../index'
// 微信授权登录(获取跳转地址)
const authFollow = (data) => {
return request({
url : 'user/auth/official/url',
data: data
})
}
// 微信登录传入code
const wechatCode = (data) => {
return request({
url : 'user/auth/official/openid',
method: 'POST',
data: data
})
}
export {
authFollow,
wechatCode
}