settings.js 2.48 KB
Newer Older
wanli's avatar
wanli committed
1 2 3
/*
 * @Author: your name
 * @Date: 2021-04-14 14:12:19
wanli's avatar
wanli committed
4
 * @LastEditTime: 2021-07-05 18:58:33
wanli's avatar
wanli committed
5 6 7 8
 * @LastEditors: Please set LastEditors
 * @Description: In User Settings Edit
 * @FilePath: \evm-store\frontend\src\settings.js
 */
wanli's avatar
wanli committed
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
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",
wanli's avatar
wanli committed
44
            path: "home/index",
wanli's avatar
wanli committed
45 46 47 48 49 50
        },
        {
            vue: "app-store/build.vue",
            title: "打包日志",
            name: "AppBuild",
            icon: "gongzuotai",
wanli's avatar
wanli committed
51
            path: "build/index",
wanli's avatar
wanli committed
52 53 54 55 56 57
        },
        {
            vue: "app-store/device.vue",
            title: "设备管理",
            name: "Device",
            icon: "gongzuotai",
wanli's avatar
wanli committed
58
            path: "device/index",
wanli's avatar
wanli committed
59
        },
wanli's avatar
wanli committed
60 61 62 63 64 65
        {
            vue: "system/monitor.vue",
            title: "资源监视",
            name: "Monitor",
            icon: "gongzuotai",
            path: "monitor/index",
wanli's avatar
wanli committed
66
        },
wanli's avatar
wanli committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80
        // {
        //     vue: "system/chart.vue",
        //     title: "实时曲线",
        //     name: "AppChart",
        //     icon: "gongzuotai",
        //     path: "chart/index",
        // },
        // {
        //     vue: "system/history.vue",
        //     title: "历史曲线",
        //     name: "AppHistoryChart",
        //     icon: "gongzuotai",
        //     path: "history/index",
        // },
wanli's avatar
wanli committed
81 82 83 84 85
        {
            vue: "system/tool.vue",
            title: "工具",
            name: "AppTool",
            icon: "gongzuotai",
wanli's avatar
wanli committed
86
            path: "tool/index",
wanli's avatar
wanli committed
87
        },
wanli's avatar
wanli committed
88 89 90 91 92 93 94
        {
            vue: "app-store/docs.vue",
            title: "开发文档",
            name: "Document",
            icon: "gongzuotai",
            path: "docs/index",
        },
wanli's avatar
wanli committed
95 96
    ],
};