审查视图

src/views/dashboard/index.vue 4.2 KB
王勇 authored
1 2
<template>
    <div class="dashboard-editor-container">
小范 authored
3 4
        <img style="height: 100%;width: 100%" src="~img/indexcp.jpg">
<!--        <github-corner class="github-corner" />-->
王勇 authored
5
小范 authored
6
<!--        <panel-group @handleSetLineChartData="handleSetLineChartData" />-->
王勇 authored
7
小范 authored
8 9 10
<!--        <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">-->
<!--            <line-chart :chart-data="lineChartData" />-->
<!--        </el-row>-->
王勇 authored
11
小范 authored
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<!--        <el-row :gutter="20">-->
<!--            <el-col :span="7">-->
<!--                <div class="chart-wrapper">-->
<!--                    <raddar-chart />-->
<!--                </div>-->
<!--            </el-col>-->
<!--&lt;!&ndash;            :xs="24" :sm="24" :lg="8"&ndash;&gt;-->
<!--            <el-col :span="7">-->
<!--                <div class="chart-wrapper">-->
<!--                    <pie-chart />-->
<!--                </div>-->
<!--            </el-col>-->
<!--            <el-col :span="7">-->
<!--                <div class="chart-wrapper">-->
<!--                    <bar-chart />-->
<!--                </div>-->
<!--            </el-col>-->
<!--        </el-row>-->
王勇 authored
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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

<!--        <el-row :gutter="8">-->
<!--            <el-col :xs="{span: 24}" :sm="{span: 24}" :md="{span: 24}" :lg="{span: 12}" :xl="{span: 12}" style="padding-right:8px;margin-bottom:30px;">-->
<!--                <transaction-table />-->
<!--            </el-col>-->
<!--            <el-col :xs="{span: 24}" :sm="{span: 12}" :md="{span: 12}" :lg="{span: 6}" :xl="{span: 6}" style="margin-bottom:30px;">-->
<!--                <todo-list />-->
<!--            </el-col>-->
<!--            <el-col :xs="{span: 24}" :sm="{span: 12}" :md="{span: 12}" :lg="{span: 6}" :xl="{span: 6}" style="margin-bottom:30px;">-->
<!--                <box-card />-->
<!--            </el-col>-->
<!--        </el-row>-->
    </div>
</template>

<script>
    import GithubCorner from '../../components/GithubCorner'
    import PanelGroup from './components/PanelGroup'
    import LineChart from './components/LineChart'
    import RaddarChart from './components/RaddarChart'
    import PieChart from './components/PieChart'
    import BarChart from './components/BarChart'
    import TransactionTable from './components/TransactionTable'
    import TodoList from './components/TodoList'
    import BoxCard from './components/BoxCard'

    const lineChartData = {
        newVisitis: {
            expectedData: [100, 120, 161, 134, 105, 160, 165],
            actualData: [120, 82, 91, 154, 162, 140, 145]
        },
        messages: {
            expectedData: [200, 192, 120, 144, 160, 130, 140],
            actualData: [180, 160, 151, 106, 145, 150, 130]
        },
        purchases: {
            expectedData: [80, 100, 121, 104, 105, 90, 100],
            actualData: [120, 90, 100, 138, 142, 130, 130]
        },
        shoppings: {
            expectedData: [130, 140, 141, 142, 145, 150, 160],
            actualData: [120, 82, 91, 154, 162, 140, 130]
        }
    }

    export default {
        name: 'DashboardAdmin',
        components: {
            GithubCorner,
            PanelGroup,
            LineChart,
            RaddarChart,
            PieChart,
            BarChart,
            TransactionTable,
            TodoList,
            BoxCard
        },
        data() {
            return {
                lineChartData: lineChartData.newVisitis
            }
        },
        methods: {
            handleSetLineChartData(type) {
                this.lineChartData = lineChartData[type]
            }
        }
    }
</script>

<style lang="scss" scoped>
    .dashboard-editor-container {
小范 authored
103 104 105 106 107 108
        /*background: url("~img/indexcp.jpg");*/
        /*padding: 32px;*/
        /*background-color: rgb(0,0, 125);*/
        /*background-repeat:no-repeat;*/
        /*height: 100%;*/
        /*position: relative;*/
王勇 authored
109
小范 authored
110 111 112 113 114 115
    /*    .github-corner {*/
    /*        position: absolute;*/
    /*        top: 0px;*/
    /*        border: 0;*/
    /*        right: 0;*/
    /*    }*/
王勇 authored
116
小范 authored
117 118 119 120 121 122
    /*    .chart-wrapper {*/
    /*        background: #fff;*/
    /*        padding: 16px 16px 0;*/
    /*        margin-bottom: 32px;*/
    /*    }*/
    /*}*/
王勇 authored
123
小范 authored
124 125 126 127
    /*@media (max-width:1024px) {*/
    /*    .chart-wrapper {*/
    /*        padding: 6px;*/
    /*    }*/
王勇 authored
128 129
    }
</style>