feat: 帮助文档多语言文件上传

This commit is contained in:
TsMask
2023-11-24 14:20:59 +08:00
parent 030254db4e
commit 627e579729
8 changed files with 140 additions and 109 deletions

View File

@@ -77,3 +77,15 @@ export function getSysConf() {
method: 'get',
});
}
/**
* 转存帮助文档
* @returns object
*/
export function transferHelpDoc(data: Record<string, any>) {
return request({
url: `/help-doc`,
method: 'post',
data,
});
}