星油企业版
This commit is contained in:
105
api/account.js
Normal file
105
api/account.js
Normal file
@@ -0,0 +1,105 @@
|
||||
import request from '@/utils/request'
|
||||
const service_name = "oil-site"
|
||||
const group_name = "oilSiteAccountAppInfo"
|
||||
export default {
|
||||
//统计用户油卡总数量、总余额
|
||||
getTotalOilCardInfo (data) {
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/getTotalOilCardInfo`,
|
||||
method: 'get',
|
||||
data:data
|
||||
})
|
||||
},
|
||||
//获取用户油卡账户信息 (个人 / 自营 / 外请)
|
||||
getUserAccount (data) {
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/getUserAccount`,
|
||||
method: 'get',
|
||||
data:data
|
||||
})
|
||||
},
|
||||
getUserInfo(data) {
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/getUserSetInfo`,
|
||||
method: 'get',
|
||||
data:data
|
||||
})
|
||||
},
|
||||
// logout(){
|
||||
// return request({
|
||||
// url: `/${service_name}/${group_name}/logout`,
|
||||
// method: 'get'
|
||||
// })
|
||||
// },
|
||||
logout(){
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/logoutAuthSystem/XOIL_DRIVER`,
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
getCustomerAccount(){
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/getCustomerAccount`,
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
getUserPayInfo(data) {
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/getUserPayInfo`,
|
||||
method: 'post',
|
||||
data:data
|
||||
})
|
||||
},
|
||||
pollingPayResult(id) {
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/pollingPayResult/${id}`,
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
getOilCardRecordByPage(data) {
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/getOilCardRecordByPage`,
|
||||
method: 'post',
|
||||
data:data
|
||||
})
|
||||
},
|
||||
switchAccountInfo(role){
|
||||
return request({
|
||||
url: `/${service_name}/${group_name}/switchAccountInfo/${role}`,
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
// getByPhone(role){ //old 获取用户信息
|
||||
// return request({
|
||||
// url: `/oil-user/sysCustomerInfo/getByPhone/${role}`,
|
||||
// method: 'get'
|
||||
// })
|
||||
// },
|
||||
getByPhone(role){ //new 获取用户信息
|
||||
return request({
|
||||
url: `/oil-user/sysCustomerInfo/getByPhoneNoGlobalEnable/${role}`,
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
giveCard(role){
|
||||
return request({
|
||||
url: `/oil-user/sysCustomerInfo/giveCard`,
|
||||
method: 'post',
|
||||
data:role
|
||||
})
|
||||
},
|
||||
oilCustomerAccountRecord(role){
|
||||
return request({
|
||||
url: `/oil-finance/oilCustomerAccountRecord/giveCard`,
|
||||
method: 'post',
|
||||
data:role
|
||||
})
|
||||
},
|
||||
getNewUserAccount(data){
|
||||
return request({
|
||||
url: `/oil-site/oilSiteAccountAppInfo/getNewUserAccount`,
|
||||
method: 'post',
|
||||
data:data
|
||||
})
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user