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.
105 lines
2.4 KiB
105 lines
2.4 KiB
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 |
|
}) |
|
}, |
|
}
|
|
|