This commit is contained in:
caolc
2023-05-08 10:45:07 +08:00
parent 8fd25deedf
commit 1c3e0f9662
27 changed files with 388 additions and 297 deletions

View File

@@ -1,17 +1,17 @@
import request from '@/utils/request'
const service_name = "oil-identity"
const group_name = "weChatAuthorization"
const service_name = "xkhl-identity"
const group_name = "unionAuth"
export default {
loginPwd (data,type) {
return request({
url: `/${service_name}/${group_name}/loginByPhonePwd${type}`,
url: `/xkhl-identity/unionAuth/loginPwd`,
method: 'post',
data:data
})
},
loginByPhoneNext (data,type) {
return request({
url: `/${service_name}/${group_name}/loginByPhoneNext${type}`,
url: `/xkhl-identity/unionAuth/loginByPhoneNext${type}`,
method: 'post',
data:data
})