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.
55 lines
1.3 KiB
55 lines
1.3 KiB
import request from '@/utils/request' |
|
const service_name = "oil-user" |
|
const group_name = "sysCustomerInfo" |
|
export default { |
|
getByPage (data) { |
|
return request({ |
|
url: `/oil-finance/oilCustomerCompanyAccountRecord/getByPage`, |
|
method: 'post', |
|
data:data |
|
}) |
|
}, |
|
deleteByCustomerId (data) { |
|
return request({ |
|
url: `/oil-user/oilCustomerCompanyRelation/deleteByCustomerId`, |
|
method: 'post', |
|
data:data |
|
}) |
|
}, |
|
updateCompanyQuota (data) { |
|
return request({ |
|
url: `/oil-user/oilCustomerCompanyRelation/updateCompanyQuota`, |
|
method: 'post', |
|
data:data |
|
}) |
|
}, |
|
unbindOilCard (data) { |
|
return request({ |
|
url: `/oil-finance/oilCustomerCompanyAccount/unbindOilCard`, |
|
method: 'get', |
|
params:data |
|
}) |
|
}, |
|
upOilCard (data) { |
|
return request({ |
|
url: `/oil-finance/oilCustomerCompanyAccount/upOilCard`, |
|
method: 'post', |
|
data:data |
|
}) |
|
}, |
|
disableEnable (data) { |
|
return request({ |
|
url: `/oil-finance/oilCustomerCompanyAccount/disableEnable`, |
|
method: 'get', |
|
params:data |
|
}) |
|
}, |
|
oilCustomerAccountRecord (data) { |
|
return request({ |
|
url: `/oil-finance/oilCustomerAccountRecord/getByPage`, |
|
method: 'post', |
|
data:data |
|
}) |
|
} |
|
|
|
}
|
|
|