numCard.vue 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <div class="numCard">
  3. <div
  4. class="cardItem"
  5. v-for="(item, i) in sdlist"
  6. :key="i"
  7. :class="`card${i}`"
  8. >
  9. <span>{{ item.name }}</span>
  10. <span>{{ sddata[""] || 0 }}个</span>
  11. <span>{{ sddata[""] || 0 }}亩</span>
  12. <div class="cardItem acard" :class="`card${i}`" v-if="item.show">
  13. <span>{{ item.name }}1</span>
  14. <span>{{ sddata[""] || 0 }}个</span>
  15. <span>{{ sddata[""] || 0 }}亩</span>
  16. </div>
  17. <div class="cardItem acard" :class="`card${i}`" v-if="item.show">
  18. <span>{{ item.name }}2</span>
  19. <span>{{ sddata[""] || 0 }}个</span>
  20. <span>{{ sddata[""] || 0 }}亩</span>
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script setup>
  26. defineProps({
  27. sddata: {
  28. type: Object,
  29. default: {},
  30. },
  31. sdlist: {
  32. type: Array,
  33. default: () => [],
  34. },
  35. });
  36. </script>
  37. <style lang="scss" scoped>
  38. .numCard {
  39. width: 100%;
  40. height: 120px;
  41. display: flex;
  42. // background-color: rgba(255, 192, 203, 0.272);
  43. flex-direction: row;
  44. align-items: center;
  45. justify-content: space-between;
  46. .cardItem {
  47. position: relative;
  48. // width: 230px;
  49. width: 200px;
  50. height: 85px;
  51. background: linear-gradient(
  52. 180deg,
  53. rgba(30, 198, 149, 1) 0%,
  54. rgba(30, 198, 149, 1) 0%,
  55. rgba(51, 204, 204, 1) 100%,
  56. rgba(51, 204, 204, 1) 100%
  57. );
  58. border: none;
  59. border-radius: 4px;
  60. -moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.349019607843137);
  61. -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.349019607843137);
  62. box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.349019607843137);
  63. font-family: "Arial Negreta", "Arial Normal", "Arial";
  64. font-weight: 700;
  65. font-style: normal;
  66. font-size: 14px;
  67. color: #ffffff;
  68. // display: flex;
  69. flex-direction: column;
  70. justify-content: center;
  71. span {
  72. display: inline-block;
  73. width: 100%;
  74. height: calc(100% / 3);
  75. // background: #faebd78c;
  76. text-align: center;
  77. line-height: 28px;
  78. }
  79. }
  80. .acard {
  81. margin-top: 20px;
  82. z-index: 10;
  83. }
  84. .card1 {
  85. background: linear-gradient(
  86. 90deg,
  87. rgba(244, 174, 149, 1) 0%,
  88. rgba(244, 174, 149, 1) 0%,
  89. rgba(226, 113, 140, 1) 100%,
  90. rgba(226, 113, 140, 1) 100%
  91. );
  92. }
  93. }
  94. </style>