多模块重构 10:去除 Freemarker 依赖,修改字典的前缀,从 sys=》system、inf=》infra 见名知意

This commit is contained in:
YunaiV
2022-02-02 01:27:04 +08:00
parent 2b630ef3f2
commit 8d59384904
51 changed files with 2080 additions and 1484 deletions

View File

@ -3,7 +3,7 @@ import request from "@/utils/request";
export function exportHtml() {
return request({
url: '/infra/db-doc/export-html',
url: '/tool/db-doc/export-html',
method: 'get',
responseType: 'blob'
})
@ -11,7 +11,7 @@ export function exportHtml() {
export function exportWord() {
return request({
url: '/infra/db-doc/export-word',
url: '/tool/db-doc/export-word',
method: 'get',
responseType: 'blob'
})
@ -19,7 +19,7 @@ export function exportWord() {
export function exportMarkdown() {
return request({
url: '/infra/db-doc/export-markdown',
url: '/tool/db-doc/export-markdown',
method: 'get',
responseType: 'blob'
})