diff --git a/src/api/system/bookInfo.js b/src/api/system/bookInfo.js deleted file mode 100644 index c4795b0..0000000 --- a/src/api/system/bookInfo.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询【请填写功能名称】列表 -export function listInfo(query) { - return request({ - url: '/system/info/list', - method: 'get', - params: query - }) -} - -// 查询【请填写功能名称】详细 -export function getInfo(id) { - return request({ - url: '/system/info/' + id, - method: 'get' - }) -} - -// 新增【请填写功能名称】 -export function addInfo(data) { - return request({ - url: '/system/info', - method: 'post', - data: data - }) -} - -// 修改【请填写功能名称】 -export function updateInfo(data) { - return request({ - url: '/system/info', - method: 'put', - data: data - }) -} - -// 删除【请填写功能名称】 -export function delInfo(id) { - return request({ - url: '/system/info/' + id, - method: 'delete' - }) -} diff --git a/src/views/system/book/index.vue b/src/views/system/book/index.vue deleted file mode 100644 index f3399ba..0000000 --- a/src/views/system/book/index.vue +++ /dev/null @@ -1,368 +0,0 @@ - - -