This commit is contained in:
2025-04-02 19:16:28 +08:00
parent 9d3945413a
commit e43f9230eb
31 changed files with 513 additions and 188 deletions

View File

@@ -68,7 +68,7 @@ export default {
})
},
/**
* 添加字典Item数据
* 添加dictItem数据
* @returns
*/
saveDictItem(data = {}) {
@@ -99,5 +99,27 @@ export default {
method: "delete",
data
})
},
/**
* 快速新增字典项(非字典)
* @returns 成功或失败
*/
createDictItemFast(data = {}) {
return request({
url: "system/dataDict/fastSave",
method: "post",
data
})
},
/**
* 快速新增依据标准字典项(非字典)
* @returns 成功或失败
*/
createDictItemStdFast(data = {}) {
return request({
url: "system/dataDict/saveStdItem",
method: "post",
data
})
}
}