Merge branch 'main' of http://192.168.10.28:3000/Yaxin/5G-Loading-Bay-Web
After Width: | Height: | Size: 342 KiB |
After Width: | Height: | Size: 800 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 225 KiB |
After Width: | Height: | Size: 400 KiB |
After Width: | Height: | Size: 352 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 922 B |
@ -0,0 +1,11 @@
|
||||
<!--
|
||||
* @Author: donghao donghao@supervision.ltd
|
||||
* @Date: 2025-03-12 13:48:31
|
||||
* @LastEditors: donghao donghao@supervision.ltd
|
||||
* @LastEditTime: 2025-03-12 13:56:15
|
||||
* @FilePath: \5G-Loading-Bay-Web\src\components\videoPlayer\player.vue
|
||||
* @Description: 视频播放器
|
||||
-->
|
||||
<template>
|
||||
<!-- 视频播放器 -->
|
||||
</template>
|
@ -0,0 +1,4 @@
|
||||
|
||||
<template>
|
||||
<!-- 实时视频播放器 -->
|
||||
</template>
|
@ -1,71 +1,89 @@
|
||||
.pole-monitor-wrap {
|
||||
.search-section{
|
||||
padding: 16px 0;
|
||||
}
|
||||
.pole-monitor-search-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin: 16px 0;
|
||||
background-image: url("@/assets/common/bg_banner.png");
|
||||
// background-color: red;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
.bg_footer_desp{
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
background-image: url("@/assets/common/bg_banner_footer.png");
|
||||
// background-color: red;
|
||||
background-size: contain;
|
||||
background-position: bottom center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.right-panel{
|
||||
.el-scrollbar__view {
|
||||
background: transparent !important;
|
||||
height: 600px;
|
||||
|
||||
.search-section {
|
||||
padding: 16px 0;
|
||||
}
|
||||
}
|
||||
.pole-monitor-main {
|
||||
.left-panel {
|
||||
.pole-main-content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.pole-monitor-search-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin: 16px 0;
|
||||
}
|
||||
.right-panel {
|
||||
.el-scrollbar__view {
|
||||
background: transparent !important;
|
||||
height: 600px;
|
||||
}
|
||||
}
|
||||
.pole-monitor-main {
|
||||
.left-panel {
|
||||
.main-image {
|
||||
box-sizing: border-box;
|
||||
min-height: 512px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 512px;
|
||||
}
|
||||
box-sizing: border-box;
|
||||
min-height: 512px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 512px;
|
||||
}
|
||||
}
|
||||
.thumbnail-container {
|
||||
width: 100%;
|
||||
overflow: visible;
|
||||
.swiper {
|
||||
width: 100%;
|
||||
overflow: visible;
|
||||
.swiper {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
.swiper-slide {
|
||||
width: 20%;
|
||||
border-radius: 4px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
.swiper-slide {
|
||||
width: 20%;
|
||||
border-radius:4px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius:4px;
|
||||
}
|
||||
}
|
||||
.active-slide img {
|
||||
border-radius:4px;
|
||||
border: 2px solid #2ECCE0;
|
||||
}
|
||||
.swiper-button-prev,
|
||||
.swiper-button-next {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: white;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.swiper-button-prev::after,
|
||||
.swiper-button-next::after {
|
||||
font-size: 12px ;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
/* 修改按钮悬停样式 */
|
||||
.swiper-button-prev:hover,
|
||||
.swiper-button-next:hover {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
height: 144px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
}
|
||||
.active-slide img {
|
||||
border-radius: 4px;
|
||||
border: 2px solid #2ecce0;
|
||||
}
|
||||
.swiper-button-prev,
|
||||
.swiper-button-next {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: white;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.swiper-button-prev::after,
|
||||
.swiper-button-next::after {
|
||||
font-size: 12px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* 修改按钮悬停样式 */
|
||||
.swiper-button-prev:hover,
|
||||
.swiper-button-next:hover {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|