This commit is contained in:
张良(004796)
2024-02-19 16:50:20 +08:00
parent 433860abf4
commit 820a9d749f
3 changed files with 211 additions and 6 deletions

View File

@@ -16,6 +16,21 @@ export function lastRefresh() {
})
}
export function updateSensitiveConfig(data) {
return request({
url: '/sensitive/word/updateSensitiveConfig',
method: 'post',
data: data
})
}
export function getSensitiveConfig() {
return request({
url: '/sensitive/word/getSensitiveConfig',
method: 'get',
})
}
// 查询敏感词详细
export function getWord(id) {
return request({