2023-09-06 11:28:22 +08:00
|
|
|
<template>
|
2023-09-07 11:27:21 +08:00
|
|
|
<div class="leftTop">
|
|
|
|
|
<Card title="宣传视频">
|
|
|
|
|
<div class="videoBox">
|
|
|
|
|
<video src="" class="videos" autoplay controls loop></video>
|
|
|
|
|
</div>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
2023-09-06 11:28:22 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2023-09-07 11:27:21 +08:00
|
|
|
import Card from "@/components/card.vue";
|
2023-09-06 11:28:22 +08:00
|
|
|
</script>
|
|
|
|
|
|
2023-09-07 11:27:21 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.leftTop {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.videoBox {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: url("@/assets/images/comprehensiveManage/project10.png") no-repeat;
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
.videos {
|
|
|
|
|
width: 78%;
|
|
|
|
|
height: 92%;
|
|
|
|
|
margin: 3% 11%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
::v-deep .h-card .content {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
2023-09-06 11:28:22 +08:00
|
|
|
</style>
|