12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <template>
- <div class="numCard">
- <div
- class="cardItem"
- v-for="(item, i) in sdlist"
- :key="i"
- :class="`card${i}`"
- >
- <span>{{ item.name }}</span>
- <span>{{ sddata[""] || 0 }}个</span>
- <span>{{ sddata[""] || 0 }}亩</span>
- <div class="cardItem acard" :class="`card${i}`" v-if="item.show">
- <span>{{ item.name }}1</span>
- <span>{{ sddata[""] || 0 }}个</span>
- <span>{{ sddata[""] || 0 }}亩</span>
- </div>
- <div class="cardItem acard" :class="`card${i}`" v-if="item.show">
- <span>{{ item.name }}2</span>
- <span>{{ sddata[""] || 0 }}个</span>
- <span>{{ sddata[""] || 0 }}亩</span>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- defineProps({
- sddata: {
- type: Object,
- default: {},
- },
- sdlist: {
- type: Array,
- default: () => [],
- },
- });
- </script>
- <style lang="scss" scoped>
- .numCard {
- width: 100%;
- height: 120px;
- display: flex;
- // background-color: rgba(255, 192, 203, 0.272);
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- .cardItem {
- position: relative;
- // width: 230px;
- width: 200px;
- height: 85px;
- background: linear-gradient(
- 180deg,
- rgba(30, 198, 149, 1) 0%,
- rgba(30, 198, 149, 1) 0%,
- rgba(51, 204, 204, 1) 100%,
- rgba(51, 204, 204, 1) 100%
- );
- border: none;
- border-radius: 4px;
- -moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.349019607843137);
- -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.349019607843137);
- box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.349019607843137);
- font-family: "Arial Negreta", "Arial Normal", "Arial";
- font-weight: 700;
- font-style: normal;
- font-size: 14px;
- color: #ffffff;
- // display: flex;
- flex-direction: column;
- justify-content: center;
- span {
- display: inline-block;
- width: 100%;
- height: calc(100% / 3);
- // background: #faebd78c;
- text-align: center;
- line-height: 28px;
- }
- }
- .acard {
- margin-top: 20px;
- z-index: 10;
- }
- .card1 {
- background: linear-gradient(
- 90deg,
- rgba(244, 174, 149, 1) 0%,
- rgba(244, 174, 149, 1) 0%,
- rgba(226, 113, 140, 1) 100%,
- rgba(226, 113, 140, 1) 100%
- );
- }
- }
- </style>
|