currency.js 1.19 KB
Newer Older
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import request from '@/utils/request'

// 创建
export function createCurrency(data) {
  return request({
    url: '/ecw/currency/create',
    method: 'post',
    data: data
  })
}

// 更新
export function updateCurrency(data) {
  return request({
    url: '/ecw/currency/update',
    method: 'put',
    data: data
  })
}

houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
21 22 23 24 25 26 27 28 29
// 更新
export function updateCurrencyStatus(data) {
  return request({
    url: '/ecw/currency/updateStatus',
    method: 'put',
    data: data
  })
}

houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
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
// 删除
export function deleteCurrency(id) {
  return request({
    url: '/ecw/currency/delete?id=' + id,
    method: 'delete'
  })
}

// 获得
export function getCurrency(id) {
  return request({
    url: '/ecw/currency/get?id=' + id,
    method: 'get'
  })
}

// 获得分页
export function getCurrencyPage(query) {
  return request({
    url: '/ecw/currency/page',
    method: 'get',
    params: query
  })
}

wanglianghe's avatar
wanglianghe committed
55 56 57 58 59 60 61 62
// 获取所有
export function getCurrencyList() {
  return request({
    url: '/ecw/currency/list',
    method: 'get'
  })
}

houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
63 64 65 66 67 68 69 70 71
// 导出 Excel
export function exportCurrencyExcel(query) {
  return request({
    url: '/ecw/currency/export-excel',
    method: 'get',
    params: query,
    responseType: 'blob'
  })
}