08335 / hivui-platform-template
hivui平台项目模板
Newer
Older
hivui-platform-template / project / hivuiBirt / components / Birt / Page / mixins / func.js
/**
 * 功能页面上下文
 */

import { $CONST } from "@birt/funclib/ConstUtil";

export default {
    data() {
        return {
        };
    },
    computed: {

    },
    methods: {
        // 判断当前页面上下文是否功能
        isFunc() {
            // let p = this.$route.path;
            // return p && p.indexOf($CONST.PAGEFUNC)
        }
    }
}