对比新文件 |
| | |
| | | import request from '@/utils/request' |
| | | |
| | | // 鏌ヨ |
| | | export function fetchList (data) { |
| | | return request.post('/system/dict/page', data) |
| | | } |
| | | |
| | | // 鏂板缓 |
| | | export function create (data) { |
| | | return request.post('/system/dict/create', data) |
| | | } |
| | | |
| | | // 淇敼 |
| | | export function updateById (data) { |
| | | return request.post('/system/dict/updateById', data) |
| | | } |
| | | |
| | | // 鍒犻櫎 |
| | | export function deleteById (id) { |
| | | return request.get(`/system/dict/delete/${id}`) |
| | | } |
| | | |
| | | // 鎵归噺鍒犻櫎 |
| | | export function deleteByIdInBatch (ids) { |
| | | return request.get('/system/dict/delete/batch', { |
| | | params: { |
| | | ids |
| | | } |
| | | }) |
| | | } |