This commit is contained in:
Swift
2024-02-06 21:22:21 +03:30
parent 425a52c242
commit 69a31f2e2d
4 changed files with 107 additions and 91 deletions
+21 -1
View File
@@ -74,6 +74,16 @@
</div>
</div>
</div>
<div class="p-3" style="background-color: white">
<div >
<el-carousel :interval="400000" type="card" height="400px">
<el-carousel-item v-for="item in 6" :key="item">
</el-carousel-item>
</el-carousel>
</div>
</div>
</div>
</template>
@@ -114,7 +124,6 @@ export default {
}
},
methods: {
checkSerial() {
// validation
if (this.checkingSerial) {
@@ -168,3 +177,14 @@ export default {
}
}
</script>
<style scoped>
.el-carousel__item:nth-child(2n) {
background-color: #99a9bf;
}
.el-carousel__item:nth-child(2n + 1) {
background-color: #d3dce6;
}
</style>