StatisticsPanel1.vue 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div class="statistics-panel-1">
  3. <img :style="{ 'box-shadow': iconShadow }" :src="icon" class="pane-icon" alt="" />
  4. <Counter :count="amount" :tip="tip"></Counter>
  5. </div>
  6. </template>
  7. <script>
  8. import Counter from './Counter.vue'
  9. export default {
  10. components: { Counter },
  11. props: {
  12. icon: { type: String, required: true },
  13. amount: { type: Number, default: 0 },
  14. tip: { type: String, default: '' },
  15. iconShadow: {
  16. type: String,
  17. default: '0px 7px 6px -6px rgba(1, 85, 221, 0.42), 0px 6px 10px 0px rgba(1, 85, 221, 0.24)'
  18. }
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. .statistics-panel-1 {
  24. padding-left: 30px;
  25. padding-top: 44px;
  26. width: 456px;
  27. height: 152px;
  28. background-color: #fff;
  29. display: flex;
  30. border-radius: 8px;
  31. box-shadow: 0px 2px 6px 0px rgba(73, 78, 97, 0.05);
  32. .pane-icon {
  33. width: 64px;
  34. height: 64px;
  35. flex-shrink: 0;
  36. border-radius: 8px;
  37. margin-right: 24px;
  38. }
  39. }
  40. </style>