country.js 1.11 KB
Newer Older
黄卓's avatar
黄卓 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
import request from '@/utils/request'

// 创建国家区号
export function createCountry(data) {
  return request({
    url: '/ecw/country/create',
    method: 'post',
    data: data
  })
}

// 更新国家区号
export function updateCountry(data) {
  return request({
    url: '/ecw/country/update',
    method: 'put',
    data: data
  })
}

// 删除国家区号
export function deleteCountry(id) {
  return request({
    url: '/ecw/country/delete?id=' + id,
    method: 'delete'
  })
}

// 获得国家区号
export function getCountry(id) {
  return request({
    url: '/ecw/country/get?id=' + id,
    method: 'get'
  })
}

// 获得所有国家区号
export function getCountryListAll() {
  return request({
    url: '/ecw/country/list-all',
    method: 'get'
  })
}

// 获得国家区号分页
export function getCountryPage(query) {
  return request({
    url: '/ecw/country/page',
    method: 'get',
    params: query
  })
}

// 导出国家区号 Excel
export function exportCountryExcel(query) {
  return request({
    url: '/ecw/country/export-excel',
    method: 'get',
    params: query,
    responseType: 'blob'
  })
}