临时提交

This commit is contained in:
xk_yangdeshi
2020-08-18 17:19:08 +08:00
parent 1f8b3e6e55
commit 8feae367f5
30 changed files with 165 additions and 2223 deletions

14
api/login.js Normal file
View File

@@ -0,0 +1,14 @@
import request from '@/utils/request'
const service_name = "identity-service"
const group_name = "oilUser"
export default {
loginWeixin (code) {
return request({
url: `/${service_name}/${group_name}/loginWeixin`,
method: 'post',
data: {
code
}
})
}
}