This commit is contained in:
xiaozhiyong
2023-09-18 17:22:04 +08:00
parent 49fc0e5531
commit 5a73a4e9a6
9 changed files with 701 additions and 401 deletions

View File

@@ -3,35 +3,35 @@ 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
})
getTotalOilCardInfo(data) {
return request({
url: `/${service_name}/${group_name}/getTotalOilCardInfo`,
method: 'get',
data: data
})
},
//查询不可用油卡
getSyncDeductions (data) {
getSyncDeductions(data) {
return request({
url: `/oil-dict/areaCode/getSyncDeductions`,
method: 'post',
data:data
url: `/oil-dict/areaCode/getSyncDeductions`,
method: 'post',
data: data
})
},
//获取用户油卡账户信息 (个人 / 自营 / 外请)
getUserAccount (data) {
return request({
url: `/${service_name}/${group_name}/getUserAccount`,
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
})
return request({
url: `/${service_name}/${group_name}/getUserSetInfo`,
method: 'get',
data: data
})
},
// logout(){
// return request({
@@ -39,42 +39,42 @@ export default {
// method: 'get'
// })
// },
logout(){
logout() {
return request({
url: `/${service_name}/${group_name}/logoutAuthSystem/XOIL_DRIVER`,
method: 'get'
url: `/${service_name}/${group_name}/logoutAuthSystem/XOIL_DRIVER`,
method: 'get'
})
},
getCustomerAccount(){
getCustomerAccount() {
return request({
url: `/${service_name}/${group_name}/getCustomerAccount`,
method: 'get'
url: `/${service_name}/${group_name}/getCustomerAccount`,
method: 'get'
})
},
getUserPayInfo(data) {
return request({
url: `/${service_name}/${group_name}/getUserPayInfo`,
method: 'post',
data: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'
})
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'
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 获取用户信息
@@ -83,31 +83,43 @@ export default {
// method: 'get'
// })
// },
getByPhone(role){ //new 获取用户信息
return request({
url: `/oil-user/sysCustomerInfo/getByPhoneNoGlobalEnable/${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
})
},
getQrStr(id, reset) {
return request({
url: `/oil-user/oilCustomerInfo/getQrStr/${id}?reset=${reset}`,
method: 'get'
})
},
checkQrStr(id, qrStr) {
return request({
url: `/oil-user/oilCustomerInfo/checkQrStr/${id}?qrStr=${qrStr}`,
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
})
},
}