This commit is contained in:
2023-08-17 15:33:05 +08:00
parent 011506561d
commit de474e3b2e
8 changed files with 428 additions and 15 deletions

View File

@@ -0,0 +1,92 @@
import { request } from "@/api/request"
export default {
/**
* 请求dict全部数据
* @returns dict全部数据
*/
getDictIndex(params = {}) {
return request({
url: `system/dataDict/index`,
method: "get",
params
})
},
/**
* 切换字典状态
* @returns 切换成功或失败标志
*/
changeStatus(data = {}) {
return request({
url: "system/dataDict/changeStatus",
method: "put",
data
})
},
/**
* 获取字典详情列表
* @returns 字典详情列表
*/
getDictItemAll(params = {}) {
return request({
url: "system/dataDict/dictItemAll",
method: "get",
params
})
},
/**
* 数字运算操作
* @returns
*/
numberOperation(data = {}) {
return request({
url: "system/dataDict/numberOperation",
method: "put",
data
})
},
/**
* 切换字典item状态
* @returns 切换成功或失败标志
*/
changeItemStatus(data = {}) {
return request({
url: "system/dataDict/changeItemStatus",
method: "put",
data
})
},
/**
* 添加字典Item数据
* @returns
*/
saveDictItem(data = {}) {
return request({
url: "system/dataDict/saveitem",
method: "post",
data
})
},
/**
* 更新dictItem数据
* @returns
*/
updateDictItemData(id, data = {}) {
return request({
url: "system/dataDict/update/" + id,
method: "put",
data
})
},
/**
* 真实删除
* @returns
*/
realDeleteItem(data) {
return request({
url: "system/dictType/realDeleteItem",
method: "delete",
data
})
}
}