update 芯片良率

This commit is contained in:
DESKTOP-FUDKNA8\znjsz
2024-04-29 16:00:07 +08:00
parent b6820fd61f
commit e066a7c4c7
7 changed files with 326 additions and 11 deletions

View File

@@ -6,22 +6,42 @@
-->
<template>
<div class="chip-rate">
<ChipRateItem :cities="['成都', '邯郸', '株洲', '瑞昌']" :color="1" />
<ChipRateItem :cities="['佳木斯', '凯盛光伏', '蚌埠兴科']" :color="2" />
</div>
</template>
<script>
import ChipRateItemVue from "./sub/chip/ChipRateItem.vue";
export default {
name: "ChipRate",
components: {},
props: {},
data() {
return {}
},
computed: {},
methods: {},
}
name: "ChipRate",
components: { ChipRateItem: ChipRateItemVue },
props: {},
data() {
return {};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.chip-rate {
flex: 1;
display: flex;
gap: 5px;
position: relative;
&:after {
content: "";
position: absolute;
left: 50%;
top: 0;
width: 3px;
height: 100%;
transform: translateX(-50%);
background: linear-gradient(to bottom, transparent, #00f2ff, transparent);
}
}
</style>