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