jtoms %!s(int64=4) %!d(string=hai) anos
pai
achega
45729651b5
Modificáronse 4 ficheiros con 186 adicións e 7 borrados
  1. 1 0
      package.json
  2. 8 0
      src/api/dashboard.js
  3. 161 0
      src/views/dashboard/PanelGroup.vue
  4. 16 7
      src/views/dashboard/index.vue

+ 1 - 0
package.json

@@ -21,6 +21,7 @@
     "nprogress": "0.2.0",
     "path-to-regexp": "2.4.0",
     "vue": "2.6.10",
+    "vue-count-to": "^1.0.13",
     "vue-router": "3.0.6",
     "vuex": "3.1.0"
   },

+ 8 - 0
src/api/dashboard.js

@@ -0,0 +1,8 @@
+import request from '@/utils/request'
+
+export function dashboard() {
+  return request({
+    url: '/dashboard',
+    method: 'post'
+  })
+}

+ 161 - 0
src/views/dashboard/PanelGroup.vue

@@ -0,0 +1,161 @@
+<template>
+  <el-row :gutter="40" class="panel-group">
+    <el-col :xs="12" :sm="12" :lg="6" class="card-panel-col">
+      <div class="card-panel">
+        <div class="card-panel-icon-wrapper icon-people">
+          <i class="el-icon-link card-panel-icon" />
+        </div>
+        <div class="card-panel-description">
+          <div class="card-panel-text">
+            Api数量
+          </div>
+          <count-to :start-val="0" :end-val="serviceMethodHandlerCount" :duration="2600" class="card-panel-num" />
+        </div>
+      </div>
+    </el-col>
+    <el-col :xs="12" :sm="12" :lg="6" class="card-panel-col">
+      <div class="card-panel">
+        <div class="card-panel-icon-wrapper icon-message">
+          <i class="el-icon-menu card-panel-icon" />
+        </div>
+        <div class="card-panel-description">
+          <div class="card-panel-text">
+            应用数
+          </div>
+          <count-to :start-val="0" :end-val="appKeyCount" :duration="2600" class="card-panel-num" />
+        </div>
+      </div>
+    </el-col>
+  </el-row>
+</template>
+
+<script>
+import CountTo from 'vue-count-to'
+
+export default {
+  components: {
+    CountTo
+  },
+  props: {
+    serviceMethodHandlerCount: {
+      type: Number,
+      default: 0
+    },
+    appKeyCount: {
+      type: Number,
+      default: 0
+    }
+  },
+  methods: {}
+}
+</script>
+
+<style lang="scss" scoped>
+.panel-group {
+  margin-top: 18px;
+
+  .card-panel-col {
+    margin-bottom: 32px;
+  }
+
+  .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-people {
+        background: #40c9c6;
+      }
+
+      .icon-message {
+        background: #36a3f7;
+      }
+
+      .icon-money {
+        background: #f4516c;
+      }
+
+      .icon-shopping {
+        background: #34bfa3
+      }
+    }
+
+    .icon-people {
+      color: #40c9c6;
+    }
+
+    .icon-message {
+      color: #36a3f7;
+    }
+
+    .icon-money {
+      color: #f4516c;
+    }
+
+    .icon-shopping {
+      color: #34bfa3
+    }
+
+    .card-panel-icon-wrapper {
+      float: left;
+      margin: 14px 0 0 14px;
+      padding: 16px;
+      transition: all 0.38s ease-out;
+      border-radius: 6px;
+    }
+
+    .card-panel-icon {
+      float: left;
+      font-size: 48px;
+    }
+
+    .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;
+      }
+    }
+  }
+}
+
+@media (max-width: 550px) {
+  .card-panel-description {
+    display: none;
+  }
+
+  .card-panel-icon-wrapper {
+    float: none !important;
+    width: 100%;
+    height: 100%;
+    margin: 0 !important;
+
+    .svg-icon {
+      display: block;
+      margin: 14px auto !important;
+      float: none !important;
+    }
+  }
+}
+</style>

+ 16 - 7
src/views/dashboard/index.vue

@@ -1,19 +1,27 @@
 <template>
   <div class="dashboard-container">
-    <div class="dashboard-text">name: {{ oauthInfo.nickName }}</div>
+    <PanelGroup :service-method-handler-count="data.serviceMethodHandlerCount || 0" :app-key-count="data.appKeyCount || 0" />
   </div>
 </template>
 
 <script>
-import { mapGetters } from 'vuex'
+import PanelGroup from './PanelGroup'
+import { dashboard } from '@/api/dashboard'
 
 export default {
   name: 'Dashboard',
-  computed: {
-    ...mapGetters([
-      'oauthInfo'
-    ])
-  }
+  components: { PanelGroup },
+  data() {
+    return {
+      data: {}
+    }
+  },
+  created() {
+    dashboard().then(v => {
+      this.data = v
+    })
+  },
+  method: {}
 }
 </script>
 
@@ -22,6 +30,7 @@ export default {
   &-container {
     margin: 30px;
   }
+
   &-text {
     font-size: 30px;
     line-height: 46px;