1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import request from '@/utils/request'
- // 查询【请填写功能名称】列表
- export function searchInfo(query) {
- return request({
- url: '/system/search/location/info/search',
- method: 'get',
- params: query
- })
- }
- // 查询【请填写功能名称】列表
- export function listInfo(query) {
- return request({
- url: '/system/search/location/info/list',
- method: 'get',
- params: query
- })
- }
- // 查询【请填写功能名称】详细
- export function getInfo(id) {
- return request({
- url: '/system/search/location/info/' + id,
- method: 'get'
- })
- }
- // 新增【请填写功能名称】
- export function addInfo(data) {
- return request({
- url: '/system/search/location/info',
- method: 'post',
- data: data
- })
- }
- // 修改【请填写功能名称】
- export function updateInfo(data) {
- return request({
- url: '/system/search/location/info',
- method: 'put',
- data: data
- })
- }
- // 删除【请填写功能名称】
- export function delInfo(id) {
- return request({
- url: '/system/search/location/info' + id,
- method: 'delete'
- })
- }
|