1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import request from '@/utils/request'
- // 查询油枪管理列表
- export function listGun(query) {
- return request({
- url: '/station/gun/list',
- method: 'get',
- params: query
- })
- }
- export function selectGun() {
- return request({
- url: '/station/gun/selectGun',
- method: 'get'
- })
- }
- // 查询油站信息列表
- export function stationinfo(query) {
- return request({
- url: '/station/info/selectStationInfo',
- method: 'get',
- params: query
- })
- }
- // 查询油枪管理详细
- export function getGun(oilGunId) {
- return request({
- url: '/station/gun/' + oilGunId,
- method: 'get'
- })
- }
- // 新增油枪管理
- export function addGun(data) {
- return request({
- url: '/station/gun',
- method: 'post',
- data: data
- })
- }
- // 修改油枪管理
- export function updateGun(data) {
- return request({
- url: '/station/gun',
- method: 'put',
- data: data
- })
- }
- // 删除油枪管理
- export function delGun(oilGunId) {
- return request({
- url: '/station/gun/' + oilGunId,
- method: 'delete'
- })
- }
- // 导出油枪管理
- export function exportGun(query) {
- return request({
- url: '/station/gun/export',
- method: 'get',
- params: query
- })
- }
|