星油企业版

This commit is contained in:
caolc
2022-08-08 09:17:43 +08:00
commit e3238cb907
517 changed files with 80472 additions and 0 deletions

32
api/wxcode.js Normal file
View File

@@ -0,0 +1,32 @@
import request from '@/utils/request'
export default {
// 小程序码解析
getQrCodeType(data) {
return request({
url: `/oil-user/oilCompanyInfo/getQrCodeType`,
method: 'post',
data: data
})
},
theUserAuthentication(data) {
return request({
url: `/oil-user/oilCompanyInfo/theUserAuthentication`,
method: 'post',
data: data
})
},
loginSmsCode(data) {
return request({
url: `/oil-user/oilCompanyInfo/loginSmsCode`,
method: 'post',
data: data
})
},
checkCodeWithDel(data) {
return request({
url: `/oil-user/oilCompanyInfo/checkCodeWithDel`,
method: 'post',
data: data
})
}
}