index.vue 6.2 KB
Newer Older
有来技术 已提交
1
<template>
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
  <div class="dashboard-container">
    <github-corner class="github-corner"/>

    <el-row :gutter="40" class="card-panel-col">
      <el-col :xs="12" :span="12" :lg="6">
        <div class="card-panel">
          <div class="card-panel-icon-wrapper" style="margin-top: -10px">
            <el-image style="width:200px; height: 90px"
                      src="https://gitee.com/haoxr/image/raw/master/20210606213932.png"></el-image>
          </div>
          <div class="card-panel-description">
            <div class="card-panel-text">
              {{ nickname }}
            </div>
            <div class="card-panel-text">
              <el-tag size="mini" type="danger">莫得感情</el-tag>
              <el-tag size="mini" type="success" style="margin-left: 5px">打工人</el-tag>
            </div>
          </div>
        </div>
      </el-col>

      <el-col :xs="12" :span="12" :lg="6" class="card-panel-col">
        <div class="card-panel">
          <div class="card-panel-icon-wrapper icon-people">
            <svg-icon icon-class="peoples" class-name="card-panel-icon"/>
          </div>
          <div class="card-panel-description">
            <div class="card-panel-text">
              总访问量
            </div>
33
            <div class="card-panel-num">123456</div>
34 35 36 37 38 39 40 41 42 43 44 45
          </div>
        </div>
      </el-col>
      <el-col :xs="12" :span="12" :lg="6" class="card-panel-col">
        <div class="card-panel">
          <div class="card-panel-icon-wrapper icon-money">
            <svg-icon icon-class="money" class-name="card-panel-icon"/>
          </div>
          <div class="card-panel-description">
            <div class="card-panel-text">
              支付金额
            </div>
46
            <div class="card-panel-num">123456</div>
47 48 49 50 51 52 53 54 55 56 57 58
          </div>
        </div>
      </el-col>
      <el-col :xs="12" :span="12" :lg="6" class="card-panel-col">
        <div class="card-panel">
          <div class="card-panel-icon-wrapper icon-shopping">
            <svg-icon icon-class="shopping" class-name="card-panel-icon"/>
          </div>
          <div class="card-panel-description">
            <div class="card-panel-text">
              订单数
            </div>
59
            <div class="card-panel-num">123456</div>
60 61 62 63 64
          </div>
        </div>
      </el-col>
    </el-row>

65
    <BarChart id="barChart" height="400px" width="100%" class="bar-chart-container"/>
66

67 68 69
    <el-row :gutter="40" style="margin-top: 20px">
      <el-col :xs="24" :span="8">
        <PieChart id="pieChart" height="500px" width="100%" class="pie-chart-container"/>
70
      </el-col>
71 72 73

      <el-col :xs="24" :span="8">
        <FunnelChart id="funnelChart" height="500px" width="100%" class="pie-chart-container"/>
74
      </el-col>
75 76 77

      <el-col :xs="24" :span="8">
        <RadarChart id="radarChart" height="500px" width="100%" class="pie-chart-container"/>
78 79 80 81
      </el-col>
    </el-row>

  </div>
有来技术 已提交
82 83
</template>

84 85 86 87
<script setup lang="ts">
import GithubCorner from '@/components/GithubCorner/index.vue'
import TodoList from './components/TodoList/index.vue'
import {computed, reactive, toRefs} from "vue";
88

89
import SvgIcon from '@/components/SvgIcon/index.vue'
90 91 92 93
import BarChart from "./components/BarChart.vue";
import PieChart from "./components/PieChart.vue";
import RadarChart from "./components/RadarChart.vue";
import FunnelChart from "./components/FunnelChart.vue";
94 95 96 97 98 99 100

import {useUserStoreHook} from "@/store/modules/user"

const roles = computed(() => useUserStoreHook().roles);
const avatar = computed(() => useUserStoreHook().avatar);
const nickname = computed(() => useUserStoreHook().nickname);

101
const state = reactive({
102 103 104 105 106
  updateLogActiveName: '1',
  contactActiveName: '1',
  documentActiveName: '1'
})

107
const {updateLogActiveName, contactActiveName, documentActiveName} = toRefs(state)
108

有来技术 已提交
109 110 111
</script>


112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
<style lang="scss" scoped>

.dashboard-container {
  padding: 24px;
  background-color: rgb(240, 242, 245);
  position: relative;

  .github-corner {
    position: absolute;
    top: 0px;
    border: 0;
    right: 0;
    z-index: 99;
  }

  .box-center {
    margin: 0 auto;
    display: table;
  }

  .user-profile {
    .user-name {
    }

    .box-center {
      padding-top: 10px;
    }

    .user-role {
      padding-top: 10px;
      font-weight: 400;
      font-size: 14px;
    }

    .box-social {
      padding-top: 30px;

      .el-table {
        border-top: 1px solid #dfe6ec;
      }
    }

    .user-follow {
      padding-top: 20px;
    }
  }

  .card-panel-col {
    margin-bottom: 12px;
  }

  .card-panel {
    height: 108px;
    cursor: pointer;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    color: #666;
    background: #fff;
    box-shadow: 4px 4px 40px rgba(0, 0, 0, .05);
    border-color: rgba(0, 0, 0, .05);

    &:hover {
      .card-panel-icon-wrapper {
        color: #fff;
      }

      .icon-user {
        background: #e77541;
      }

      .icon-people {
        background: #40c9c6;
      }


      .icon-money {
        background: #f4516c;
      }

      .icon-shopping {
        background: #34bfa3
      }
    }

    .icon-people {
      color: #40c9c6;
199 200 201 202

      .svg-icon {
        width: 3em !important;
        height: 3em !important;
203 204 205 206 207
      }
    }

    .icon-message {
      color: #36a3f7;
208 209 210 211

      .svg-icon {
        width: 3em !important;
        height: 3em !important;
212 213 214 215 216
      }
    }

    .icon-money {
      color: #f4516c;
217 218 219 220

      .svg-icon {
        width: 3.2em !important;
        height: 3.2em !important;
221 222 223 224 225
      }
    }

    .icon-shopping {
      color: #34bfa3;
226 227 228 229

      .svg-icon {
        width: 3em !important;
        height: 3em !important;
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
      }
    }

    .card-panel-icon-wrapper {
      float: left;
      margin: 14px 0 0 14px;
      padding: 16px;
      transition: all 0.38s ease-out;
      border-radius: 6px;
    }

    .card-panel-description {
      float: right;
      font-weight: bold;
      margin: 26px;
      margin-left: 0px;

      .card-panel-text {
        line-height: 18px;
        color: rgba(0, 0, 0, 0.45);
        font-size: 16px;
        margin-bottom: 12px;
      }

      .card-panel-num {
        font-size: 20px;
      }
    }
  }

260 261 262 263 264 265 266
  .bar-chart-container {
    background: #ffffff;
  }

  .pie-chart-container {
    background: #ffffff;
  }
267 268 269
}

</style>