Vue3 重构:去除 modelEditor.vue 冗余代码

This commit is contained in:
YunaiV
2023-03-25 18:51:09 +08:00
parent 7463eea243
commit 9e798fb7f8
3 changed files with 60 additions and 146 deletions

View File

@ -29,7 +29,7 @@ export const getModelPageApi = async (params) => {
return await request.get({ url: '/bpm/model/page', params })
}
export const getModelApi = async (id: number) => {
export const getModel = async (id: number) => {
return await request.get({ url: '/bpm/model/get?id=' + id })
}