diff --git a/src/api/system/brand.js b/src/api/system/brand.js deleted file mode 100644 index 19c4e3f..0000000 --- a/src/api/system/brand.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询品牌商列表 -export function listBrand(query) { - return request({ - url: '/system/brand/list', - method: 'get', - params: query - }) -} - -// 查询品牌商详细 -export function getBrand(brandId) { - return request({ - url: '/system/brand/' + brandId, - method: 'get' - }) -} - -// 新增品牌商 -export function addBrand(data) { - return request({ - url: '/system/brand', - method: 'post', - data: data - }) -} - -// 修改品牌商 -export function updateBrand(data) { - return request({ - url: '/system/brand', - method: 'put', - data: data - }) -} - -// 删除品牌商 -export function delBrand(brandId) { - return request({ - url: '/system/brand/' + brandId, - method: 'delete' - }) -} diff --git a/src/views/system/brand/index.vue b/src/views/system/brand/index.vue deleted file mode 100644 index 199c50b..0000000 --- a/src/views/system/brand/index.vue +++ /dev/null @@ -1,302 +0,0 @@ - - - diff --git a/src/views/system/device/index.vue b/src/views/system/device/index.vue index f9318d7..721b572 100644 --- a/src/views/system/device/index.vue +++ b/src/views/system/device/index.vue @@ -1,16 +1,6 @@