VIEW-BASE.vue.ftl 950 字节
Newer Older
1
<#assign view_base_name>TreeView9Base</#assign>
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<#ibizinclude>
../@MACRO/LAYOUTPANEL_VIEW.template.ftl
</#ibizinclude>

<#ibizinclude>
../@MACRO/VIEW_HEADER-BASE.vue.ftl
</#ibizinclude>

<#ibizinclude>
../@MACRO/VIEW_CONTENT-BASE.vue.ftl
</#ibizinclude>


    /**
     * 节点过滤值
     *
     * @type {string}
19
     * @memberof ${srfclassname('${view.name}')}
20 21 22 23 24 25 26
     */
    public srfnodefilter: string = '';

    /**
     * 快速搜索
     *
     * @returns {void}
27
     * @memberof ${srfclassname('${view.name}')}
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
     */
    public onSearch(): void {
        if (!this.viewState) {
            return;
        }
        <#if view.hasPSControl('tree')>
        this.viewState.next({ tag: '${view.getPSControl('tree').name}', action: 'filter', data: { srfnodefilter: this.srfnodefilter } });
        </#if>
    }
    
<#ibizinclude>
../@MACRO/VIEW_BOTTOM-BASE.vue.ftl
</#ibizinclude>

<#ibizinclude>
../@MACRO/VIEW-BASE.style.ftl
</#ibizinclude>