init
This commit is contained in:
@@ -0,0 +1,104 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
import request from '@/libs/request'
|
||||
|
||||
/**
|
||||
* @description 附件分类--列表
|
||||
* @param {Object} param data {Object} 传值参数
|
||||
*/
|
||||
export function getCategoryListApi (data) {
|
||||
return request({
|
||||
url: 'file/category',
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 添加分类
|
||||
*/
|
||||
export function createApi (id) {
|
||||
return request({
|
||||
url: 'file/category/create',
|
||||
method: 'get',
|
||||
params: id
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 编辑分类
|
||||
* @param {Number} param id {Number} 分类id
|
||||
*/
|
||||
export function categoryEditApi (id) {
|
||||
return request({
|
||||
url: `file/category/${id}/edit`,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 删除分类
|
||||
* @param {Number} param id {Number} 分类id
|
||||
*/
|
||||
export function categoryDelApi (id) {
|
||||
return request({
|
||||
url: `file/category/${id}`,
|
||||
method: 'DELETE'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 附件列表
|
||||
* @param {Object} param data {Object} 传值
|
||||
*/
|
||||
export function fileListApi (data) {
|
||||
return request({
|
||||
url: 'file/file',
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 移动分类,修改附件分类表单
|
||||
* @param {Object} param data {Object} 传值
|
||||
*/
|
||||
export function moveApi (data) {
|
||||
return request({
|
||||
url: 'file/file/do_move',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 修改附件名称
|
||||
* @param {String} param ids {String} 图片id拼接成的字符串
|
||||
*/
|
||||
export function fileUpdateApi (ids,data) {
|
||||
return request({
|
||||
url: 'file/file/update/'+ids,
|
||||
method: 'put',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 删除附件
|
||||
* @param {String} param ids {String} 图片id拼接成的字符串
|
||||
*/
|
||||
export function fileDelApi (ids) {
|
||||
return request({
|
||||
url: 'file/file/delete',
|
||||
method: 'post',
|
||||
data: ids
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user