| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import request from '@/utils/request'
- // 查询城市管理列表
- export function listCity(query) {
- return request({
- url: '/system/city/list',
- method: 'get',
- params: query
- })
- }
- // 查询城市管理详细
- export function getCity(id) {
- return request({
- url: '/system/city/' + id,
- method: 'get'
- })
- }
- // 新增城市管理
- export function addCity(data) {
- return request({
- url: '/system/city',
- method: 'post',
- data: data
- })
- }
- // 修改城市管理
- export function updateCity(data) {
- return request({
- url: '/system/city',
- method: 'put',
- data: data
- })
- }
- // 删除城市管理
- export function delCity(id) {
- return request({
- url: '/system/city/' + id,
- method: 'delete'
- })
- }
|