VIEW-BASE.vue.ftl 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
<#ibizinclude>
../@MACRO/LAYOUTPANEL_VIEW.template.ftl
</#ibizinclude>

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

<#assign mounted_block>
this.timeEvent = setInterval(() => {
    if(this.countdown === 0) {
        this.gotoLoginView();
    }
    this.countdown--;
}, 1000);
</#assign>

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

    /**
     * 倒计时
     *
     * @type {number}
     * @memberof LogoutView
     */
    public countdown: number = 5;

    /**
     * 定时标识
     *
     * @type {*}
     * @memberof LogoutView
     */
    public timeEvent: any;

    /**
     * 跳转登录页
     *
     * @memberof LogoutView
     */
    public gotoLoginView() {
        if(this.timeEvent) {
            clearInterval(this.timeEvent);
            this.$router.push({name: 'login'});
        }
    }

    /**
     * vue 生命周期
     *
     * @memberof Default
     */
    public destroyed() {
        if (this.timeEvent) {
            clearInterval(this.timeEvent);
        }
    }

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

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