You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
694 B
32 lines
694 B
9 months ago
|
import request from '@/utils/request'
|
||
|
export default {
|
||
|
// 小程序码解析
|
||
|
getQrCodeType(data) {
|
||
|
return request({
|
||
|
url: `/${request.prefix}-user/oilCompanyInfo/getQrCodeType`,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
},
|
||
|
theUserAuthentication(data) {
|
||
|
return request({
|
||
|
url: `/${request.prefix}-user/oilCompanyInfo/theUserAuthentication`,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
},
|
||
|
loginSmsCode(data) {
|
||
|
return request({
|
||
|
url: `/${request.prefix}-user/oilCompanyInfo/loginSmsCode`,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
},
|
||
|
checkCodeWithDel(data) {
|
||
|
return request({
|
||
|
url: `/${request.prefix}-user/oilCompanyInfo/checkCodeWithDel`,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
}
|
||
|
}
|