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.
45 lines
897 B
45 lines
897 B
import request from '@/utils/request' |
|
|
|
export default { |
|
getByProvince(data) { |
|
return request({ |
|
url: '/oil-finance/siteOperateRecord/getByProvince', |
|
method: 'post', |
|
data: data |
|
}) |
|
}, |
|
getCheckInfo(data) { |
|
return request({ |
|
url: '/oil-site/oilSiteAppInfo/getCheckInfo', |
|
method: 'get' |
|
}) |
|
}, |
|
getByProvincePage(data) { |
|
return request({ |
|
url: '/oil-finance/siteOperateRecord/getByProvincePage', |
|
method: 'post', |
|
data: data |
|
}) |
|
}, |
|
getNetworkCount(data) { |
|
return request({ |
|
url: '/oil-finance/siteOperateRecord/getNetworkCount', |
|
method: 'post', |
|
data: data |
|
}) |
|
}, |
|
|
|
// getByProvincePage(data) { |
|
// return request({ |
|
// url: '/oil-finance/siteOperateRecord/getByProvincePage', |
|
// method: 'post', |
|
// data: data |
|
// }) |
|
// }, |
|
liekQuery(query) { |
|
return request({ |
|
url: `/oil-user/sysCustomerInfo/liekQuery/${query}`, |
|
method: 'get' |
|
}) |
|
}, |
|
}
|
|
|