From caaa37d3f59eeb33d97e0f3497bbf5885865f59d Mon Sep 17 00:00:00 2001 From: dangsn <dangsn@chicecm.com> Date: 星期一, 09 十二月 2024 18:27:17 +0800 Subject: [PATCH] 调整WebBoService中的查询接口。主要是BusinessObject对象属性的赋值,以及BusinessObject和BaseModel之间的属性互相赋值 --- Source/plt-web/plt-web-ui/src/api/modeling/attributePool/api.js | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/api/modeling/attributePool/api.js b/Source/plt-web/plt-web-ui/src/api/modeling/attributePool/api.js index 3671d5e..f3abf02 100644 --- a/Source/plt-web/plt-web-ui/src/api/modeling/attributePool/api.js +++ b/Source/plt-web/plt-web-ui/src/api/modeling/attributePool/api.js @@ -13,7 +13,7 @@ }); } -// 鍒涘缓 +// 淇敼 export function updateAttribute(params) { return request({ url: "/api/attributeController/updateAttribute", @@ -22,7 +22,7 @@ }); } -// 淇敼 +// 鍒涘缓 export function addAttribute(params) { return request({ url: "/api/attributeController/addAttribute", @@ -70,9 +70,9 @@ } // 瀵煎嚭 -export function download (params) { +export function exportAttributes (params) { return request({ - url: '/api/attributeController/importAttributes', + url: '/api/attributeController/exportAttributes', method: 'get', headers: {'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'}, responseType: 'blob', -- Gitblit v1.9.3