PICKUPGRID_VIEW-BASE.vue.ftl 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<#ibizinclude>
./LAYOUTPANEL_VIEW.template.ftl
</#ibizinclude>

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

<#ibizinclude>
./VIEW_CONTENT-BASE.vue.ftl
</#ibizinclude>
    /**
     * 选中数据字符串
     *
     * @type {string}
16
     * @memberof ${srfclassname('${view.name}')}Base
17
     */
18
    @Prop() public selectedData?: string;
19 20 21 22 23

    /**
     * 是否单选
     *
     * @type {boolean}
24
     * @memberof ${srfclassname('${view.name}')}Base
25
     */
26
    @Prop() public isSingleSelect?: boolean;
27 28 29 30 31

    /**
     * 搜索值
     *
     * @type {string}
32
     * @memberof ${srfclassname('${view.name}')}Base
33
     */
34
    public query: string = '';
35 36 37 38 39

    /**
     * 是否展开搜索表单
     *
     * @type {boolean}
40
     * @memberof ${srfclassname('${view.name}')}Base
41
     */
42
    public isExpandSearchForm: boolean = ${view.isExpandSearchForm()?c};
43 44 45 46 47 48 49 50

    /**
     * 表格行数据默认激活模式
     * 0 不激活
     * 1 单击激活
     * 2 双击激活
     *
     * @type {(number | 0 | 1 | 2)}
51
     * @memberof ${srfclassname('${view.name}')}Base
52
     */
53
    public gridRowActiveMode: number | 0 | 1 | 2 = ${view.getGridRowActiveMode()?c};
54 55 56 57 58

    /**
     * 快速搜索
     *
     * @param {*} $event
59
     * @memberof ${srfclassname('${view.name}')}Base
60
     */
61
    public onSearch($event: any): void {
62 63 64 65 66 67 68 69 70 71 72 73 74
        const refs: any = this.$refs;
        if (refs.grid) {
            refs.grid.load({});
        }
    }

<#ibizinclude>
./VIEW_BOTTOM-BASE.vue.ftl
</#ibizinclude>

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