From b43441946945e3a92a89bb49ecb13f9b24af4fcb Mon Sep 17 00:00:00 2001 From: Treecat Date: Thu, 27 Apr 2023 14:58:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=20fix:AsyncTree?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/demo/src/demo/base/tree/demo.sync_tree.js | 6 +++--- packages/fineui/src/case/ztree/asynctree.js | 2 +- packages/fineui/src/case/ztree/list/listparttree.js | 2 +- packages/fineui/src/case/ztree/parttree.js | 4 ++-- .../src/widget/multiselecttree/multiselecttree.popup.js | 4 ++-- packages/fineui/src/widget/multitree/multi.tree.popup.js | 6 +++--- scripts/lib/fui.component.json | 2 +- scripts/lib/fui.export.txt | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/demo/src/demo/base/tree/demo.sync_tree.js b/packages/demo/src/demo/base/tree/demo.sync_tree.js index f2534ab56..7fb153bb3 100644 --- a/packages/demo/src/demo/base/tree/demo.sync_tree.js +++ b/packages/demo/src/demo/base/tree/demo.sync_tree.js @@ -1,5 +1,5 @@ -import { VTapeLayout, Label, Asynctree, shortcut, Widget, isNull } from "@fui/core" +import { VTapeLayout, Label, AsyncTree, shortcut, Widget, isNull } from "@fui/core" @shortcut() @@ -33,7 +33,7 @@ export class SyncTreeDemo extends Widget { text: "可以异步获取数据的树", }, { - type: Asynctree.xtype, + type: AsyncTree.xtype, ref(_ref) { self.syncTree1 = _ref; }, @@ -78,7 +78,7 @@ export class SyncTreeDemo extends Widget { text: "showIcon属性搭配节点iconCls,可以显示图标", }, { - type: Asynctree.xtype, + type: AsyncTree.xtype, ref(_ref) { self.syncTree2 = _ref; }, diff --git a/packages/fineui/src/case/ztree/asynctree.js b/packages/fineui/src/case/ztree/asynctree.js index 9903bfbe5..f9b5bf6b6 100644 --- a/packages/fineui/src/case/ztree/asynctree.js +++ b/packages/fineui/src/case/ztree/asynctree.js @@ -4,7 +4,7 @@ import { TreeRenderPageService } from "./treerender.page.service"; import $ from "jquery"; @shortcut() -export class Asynctree extends TreeView { +export class AsyncTree extends TreeView { static xtype = "bi.async_tree"; _defaultConfig() { diff --git a/packages/fineui/src/case/ztree/list/listparttree.js b/packages/fineui/src/case/ztree/list/listparttree.js index 640390b5d..9ec25d2f0 100644 --- a/packages/fineui/src/case/ztree/list/listparttree.js +++ b/packages/fineui/src/case/ztree/list/listparttree.js @@ -7,7 +7,7 @@ import $ from "jquery"; * guy * 局部树,两个请求树, 第一个请求构造树,第二个请求获取节点 * @class ListPartTree - * @extends Asynctree + * @extends AsyncTree */ @shortcut() diff --git a/packages/fineui/src/case/ztree/parttree.js b/packages/fineui/src/case/ztree/parttree.js index 5bc75b7ba..2a93dd7bb 100644 --- a/packages/fineui/src/case/ztree/parttree.js +++ b/packages/fineui/src/case/ztree/parttree.js @@ -1,5 +1,5 @@ import { isEmpty, shortcut, extend, deepClone, each, isNotEmptyArray, Events, delay, isNull } from "@/core"; -import { Asynctree } from "./asynctree"; +import { AsyncTree } from "./asynctree"; import { TreeView } from "./treeview"; import $ from "jquery"; @@ -11,7 +11,7 @@ import $ from "jquery"; */ @shortcut() -export class PartTree extends Asynctree { +export class PartTree extends AsyncTree { static xtype = "bi.part_tree"; static EVENT_CLICK_TREE_NODE = "EVENT_CLICK_TREE_NODE"; diff --git a/packages/fineui/src/widget/multiselecttree/multiselecttree.popup.js b/packages/fineui/src/widget/multiselecttree/multiselecttree.popup.js index 7c67d1d6f..3782d209b 100644 --- a/packages/fineui/src/widget/multiselecttree/multiselecttree.popup.js +++ b/packages/fineui/src/widget/multiselecttree/multiselecttree.popup.js @@ -1,5 +1,5 @@ import { shortcut, Widget, extend, emptyFn, createWidget } from "@/core"; -import { TreeView, Asynctree } from "@/case"; +import { TreeView, AsyncTree } from "@/case"; @shortcut() export class MultiSelectTreePopup extends Widget { @@ -20,7 +20,7 @@ export class MultiSelectTreePopup extends Widget { const self = this, o = this.options; this.popup = createWidget({ - type: Asynctree.xtype, + type: AsyncTree.xtype, showLine: o.showLine, element: this, itemsCreator: o.itemsCreator, diff --git a/packages/fineui/src/widget/multitree/multi.tree.popup.js b/packages/fineui/src/widget/multitree/multi.tree.popup.js index ad450a7cd..44c91a591 100644 --- a/packages/fineui/src/widget/multitree/multi.tree.popup.js +++ b/packages/fineui/src/widget/multitree/multi.tree.popup.js @@ -1,6 +1,6 @@ import { shortcut, extend, emptyFn, createWidget, i18nText } from "@/core"; import { Pane } from "@/base"; -import { Asynctree, MultiPopupView, TreeView } from "@/case"; +import { AsyncTree, MultiPopupView, TreeView } from "@/case"; @shortcut() export class MultiTreePopup extends Pane { @@ -19,7 +19,7 @@ export class MultiTreePopup extends Pane { maxHeight: 400, onLoaded: emptyFn, el: { - type: Asynctree.xtype, + type: AsyncTree.xtype, }, }); } @@ -34,7 +34,7 @@ export class MultiTreePopup extends Pane { this.selectedValues = {}; this.tree = createWidget(opts.el, { - type: Asynctree.xtype, + type: AsyncTree.xtype, showLine: opts.showLine, height: 400, cls: "popup-view-tree", diff --git a/scripts/lib/fui.component.json b/scripts/lib/fui.component.json index fd25ca2dc..35bfe7cc1 100644 --- a/scripts/lib/fui.component.json +++ b/scripts/lib/fui.component.json @@ -166,7 +166,7 @@ "bi.select_text_trigger": "SelectTextTrigger", "bi.small_select_text_trigger": "SmallSelectTextTrigger", "bi.small_text_trigger": "SmallTextTrigger", - "bi.async_tree": "Asynctree", + "bi.async_tree": "AsyncTree", "bi.list_async_tree": "Listasynctree", "bi.list_part_tree": "ListPartTree", "bi.list_tree_view": "Listtreeview", diff --git a/scripts/lib/fui.export.txt b/scripts/lib/fui.export.txt index b4fa01d49..ef18cb6a8 100644 --- a/scripts/lib/fui.export.txt +++ b/scripts/lib/fui.export.txt @@ -17,7 +17,7 @@ AllCountPager AllValueMultiTextValueCombo ArrowNode ArrowTreeGroupNodeCheckbox -Asynctree +AsyncTree AutoVerticalTapeLayout Axis BarPopover