|
|
|
import request from '@/apis/request.js'
|
|
|
|
const { get, post } = request
|
|
|
|
|
|
|
|
export const login = (data) => {
|
|
|
|
return post('nakadai/kindergarten/platformTeamAccount/weChatAppletCallbackByKindergarten', data)
|
|
|
|
}
|
|
|
|
export const kindergartenWeChatApplication = (data) => {
|
|
|
|
return post('nakadai/kindergarten/platformTeamAccount/kindergartenWeChatApplication', data)
|
|
|
|
}
|
|
|
|
export const realNameAuthentication = (data) => {
|
|
|
|
return post(`users/users/autonym/realNameAuthentication`, data)
|
|
|
|
}
|
|
|
|
export const faceAuthentication = (data) => {
|
|
|
|
return post(`users/users/autonym/faceAuthentication?imgFile=${data.imgFile}&side=${data.side}`)
|
|
|
|
}
|
|
|
|
export const authenticationOrNot = () => {
|
|
|
|
return post(`users/users/autonym/authenticationOrNot`)
|
|
|
|
}
|
|
|
|
export const businessLicensePictureVerification = (imgFile) => {
|
|
|
|
return post(`users/users/autonym/businessLicensePictureVerification?imgFile=${imgFile}`)
|
|
|
|
}
|
|
|
|
export const creditCodeAuthentication = (data) => {
|
|
|
|
return post(`users/users/autonym/creditCodeAuthentication`, data)
|
|
|
|
}
|
|
|
|
export const organizationCertification = (data) => {
|
|
|
|
return post(`users/users/autonym/organizationCertification`, data)
|
|
|
|
}
|
|
|
|
export const updateTeamInfo = (data) => {
|
|
|
|
return post(`nakadai/kindergarten/platformTeamAccount/updateTeamInfo`, data)
|
|
|
|
}
|
|
|
|
export const queryTeamInfo = (data) => {
|
|
|
|
return get(`nakadai/kindergarten/platformTeamAccount/queryTeamInfo`, data)
|
|
|
|
}
|
|
|
|
export const viewUserDetails = (data) => {
|
|
|
|
return get(`users/users/userAccount/viewUserDetails`, data)
|
|
|
|
}
|
|
|
|
export const enterpriseCertificationStatus = (openId) => {
|
|
|
|
return post(`users/enterprise/certification/enterpriseCertificationStatus?openId=${openId}`)
|
|
|
|
}
|
|
|
|
export const saveCertification = (data) => {
|
|
|
|
return post(`users/enterprise/certification/save`, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const queryProvince = () => {
|
|
|
|
return get('nakadai/nakadai/province/queryProvince')
|
|
|
|
}
|
|
|
|
|
|
|
|
export const queryCity = (data) => {
|
|
|
|
return get('nakadai/nakadai/city/queryCity', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const updateAvatars = data => {
|
|
|
|
return post(`users/users/user/updateAvatars?openId=${data.openId}&url=${data.url}&userName=${data.userName}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const sendPhoneOrEmailCode = (data) => {
|
|
|
|
return post('users/users/userAccount/sendPhoneOrEmailCode', data)
|
|
|
|
}
|
|
|
|
export const userBinding = (data) => {
|
|
|
|
return post('users/users/user/userBinding', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const examinePassword = (data) => {
|
|
|
|
return post('users/users/userAccount/examinePassword', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getUserRolesPermissionMenu = (data) => {
|
|
|
|
return get('users/users/user-role/getUserRolesPermissionMenu', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const updatePersonCenter = (data) => {
|
|
|
|
return post('users/users/userAccount/updatePersonCenter', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const queryUserInfoDetails = () => {
|
|
|
|
return get('users/users/userAccount/queryUserInfoDetails')
|
|
|
|
}
|
|
|
|
|
|
|
|
export const updateMyEmail = (data) => {
|
|
|
|
return post('nakadai/nakadai/partner-team/updateMyEmail', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const mailCodeSend = (data) => {
|
|
|
|
return post('nakadai/nakadai/partner-team/mailCodeSend', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const changeAccount = account => {
|
|
|
|
return post(`users/users/applets/mine/changeAccount?account=${account}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const changePhoneNumber = (phone, code) => {
|
|
|
|
return post(`users/users/applets/mine/changePhoneNumber?phone=${phone}&code=${code}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const checkIfAnAccountExists = account => {
|
|
|
|
return post(`users/users/applets/mine/checkIfAnAccountExists?account=${account}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const checkIfThePhoneNumberExists = phone => {
|
|
|
|
return post(`users/users/applets/mine/checkIfThePhoneNumberExists?phone=${phone}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const queryPartnerAccount = phone => {
|
|
|
|
return post(`nakadai/nakadai/partnerAccount/queryPartnerAccount?phone=${phone}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getSessionKey = data => {
|
|
|
|
return post(`users/users/user/getSessionKey`, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const partnerAccountApplication = data => {
|
|
|
|
return post(`nakadai/nakadai/partnerAccount/partnerAccountApplication`, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const loginByOpenid = openid => {
|
|
|
|
return post(`users/users/user/loginByOpenid?openid=` + openid)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const checkWorkNumOrAccount = account => {
|
|
|
|
return post(`occupationlab/occupationlab/architecture/checkWorkNumOrAccount?platformId=4&type=0&account=` + account)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const updateUserAvatars = `http://39.108.250.202:9000/users/users/userAccount/updateUserAvatars`
|