settings.js 1.87 KB
Newer Older
wanli's avatar
wanli committed
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
export default {
    name: {
        zh: "EVM应用商店",
        en: "EVM App Store",
    },
    author: "武汉市字节码科技有限公司",
    logo: "",
    officialWeb: "https://www.baidu.com",

    // hostname: "127.0.0.1",
    // port: window.location.port,
    port: 9999,

    /**
     * @type {boolean} true | false
     * @description Whether fix the header
     */
    fixedHeader: true,

    /**
     * @type {boolean} true | false
     * @description Whether show the logo in sidebar
     */
    sidebarLogo: false,
    userblockShow: true, // 用户中心
    isFullScreen: false, //  配置放大按钮初始值
    fullScreenShow: true, // 放大按钮是否显示
    svgFilePath: "@/assets/icons/svg",

    pageInfos: [
        {
            vue: "app-store/index.vue",
            title: "应用管理",
            name: "AppIndex",
            icon: "gongzuotai",
            path: "home",
        },
        {
            vue: "app-store/build.vue",
            title: "打包日志",
            name: "AppBuild",
            icon: "gongzuotai",
            path: "build",
        },
wanli's avatar
wanli committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58
        {
            vue: "app-store/download.vue",
            title: "下载记录",
            name: "AppDownload",
            icon: "gongzuotai",
            path: "download",
        },
        {
            vue: "app-store/framework.vue",
            title: "系统页面",
            name: "Framework",
            icon: "gongzuotai",
            path: "framework",
        },
wanli's avatar
wanli committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        {
            vue: "profile/index.vue",
            title: "个人中心",
            name: "Profile",
            icon: "shangcheng",
            path: "profile",
        },
        {
            vue: "system/users.vue",
            title: "用户管理",
            name: "UserIndex",
            icon: "app",
            path: "user",
        },
    ],

    whiteList: ["/login", "/register"],
};