fix: BUG修改
This commit is contained in:
parent
9f1d0c17ca
commit
113186cfa6
@ -261,6 +261,7 @@
|
||||
// fontSize: 12
|
||||
}
|
||||
},
|
||||
barWidth: '40',
|
||||
data: [18203, 23489, 29034, 104970, 131744, 630230]
|
||||
}]
|
||||
},
|
||||
@ -586,7 +587,7 @@
|
||||
requestData.enumType = this.checkIndex;
|
||||
}
|
||||
this.sendRequest({
|
||||
url: "xmgl/xzSecurityQualityInspectionRecord/countQualityInspectionRecordRegion",
|
||||
url: "xmgl/qualityInspectionRecord/countQualityInspectionRecordRegion",
|
||||
data: requestData,
|
||||
method: "post",
|
||||
success(res) {
|
||||
|
||||
@ -261,6 +261,7 @@
|
||||
// fontSize: 12
|
||||
}
|
||||
},
|
||||
barWidth: '40',
|
||||
data: [18203, 23489, 29034, 104970, 131744, 630230]
|
||||
}]
|
||||
},
|
||||
|
||||
@ -142,7 +142,7 @@
|
||||
|
||||
.delete {
|
||||
position: absolute;
|
||||
bottom: 60px;
|
||||
bottom: 0px;
|
||||
left: 0;
|
||||
height: 50px;
|
||||
background-color: #eb3b43;
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
</view>
|
||||
<view class="videoOperateBox">
|
||||
<view class="box">
|
||||
<image src="/static/videoControlIcon/bg.png" class="bg"></image>
|
||||
<image src="../../static/videoControlIcon/bg.png" class="bg"></image>
|
||||
<view class="pic top" @click="controlVideoFn(0,0.2,0,'UP')"></view>
|
||||
<view class="pic left" @click="controlVideoFn(-0.2,0,0,'LEFT')"></view>
|
||||
<view class="pic bottom" @click="controlVideoFn(0,-0.2,0,'DOWN')"></view>
|
||||
@ -26,6 +26,9 @@
|
||||
<view class="zoom zoomout" @click="controlVideoFn(0,0,-0.2,'ZOOM_OUT')"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="video-playback">
|
||||
视频回放
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -161,6 +164,9 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.fullHeight{
|
||||
background-color: #F4F5FD;
|
||||
}
|
||||
.videoBox{
|
||||
width: 100%;
|
||||
}
|
||||
@ -177,6 +183,21 @@
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
.video-playback{
|
||||
width: 454rpx;
|
||||
height: 108rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 31rpx;
|
||||
text-align: center;
|
||||
line-height: 108rpx;
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
font-size: 40rpx;
|
||||
color: #8D8D8D;
|
||||
position: fixed;
|
||||
bottom: 80rpx;
|
||||
left: 160rpx;
|
||||
}
|
||||
.videoOperateBox {
|
||||
text-align: center;
|
||||
padding-top: 10px;
|
||||
@ -206,54 +227,54 @@
|
||||
}
|
||||
|
||||
.videoOperateBox .zoomin:hover {
|
||||
background: url("/static/videoControlIcon/4.png");
|
||||
background: url("../../static/videoControlIcon/4.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .zoomout:hover {
|
||||
background: url("/static/videoControlIcon/2.png");
|
||||
background: url("../../static/videoControlIcon/2.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .zoomin {
|
||||
background: url("/static/videoControlIcon/3.png");
|
||||
background: url("../../static/videoControlIcon/3.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .zoomout {
|
||||
background: url("/static/videoControlIcon/1.png");
|
||||
background: url("../../static/videoControlIcon/1.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .left {
|
||||
width: 28px;
|
||||
height: 33px;
|
||||
background: url("/static/videoControlIcon/left.png");
|
||||
background: url("../../static/videoControlIcon/left.png");
|
||||
left: 25px;
|
||||
top: 50%;
|
||||
margin-top: -16px;
|
||||
}
|
||||
|
||||
.videoOperateBox .left:hover {
|
||||
background: url("/static/videoControlIcon/left-active.png");
|
||||
background: url("../../static/videoControlIcon/left-active.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .right:hover {
|
||||
background: url("/static/videoControlIcon/right-active.png");
|
||||
background: url("../../static/videoControlIcon/right-active.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .top:hover {
|
||||
background: url("/static/videoControlIcon/top-active.png");
|
||||
background: url("../../static/videoControlIcon/top-active.png");
|
||||
}
|
||||
|
||||
.videoOperateBox .bottom:hover {
|
||||
background: url("/static/videoControlIcon/bottom-active.png");
|
||||
background: url("../../static/videoControlIcon/bottom-active.png");
|
||||
}
|
||||
|
||||
// .videoOperateBox .center:hover {
|
||||
// background: url("/static/videoControlIcon/center-active.png");
|
||||
// background: url("../../static/videoControlIcon/center-active.png");
|
||||
// }
|
||||
|
||||
.videoOperateBox .right {
|
||||
width: 28px;
|
||||
height: 33px;
|
||||
background: url("/static/videoControlIcon/right.png");
|
||||
background: url("../../static/videoControlIcon/right.png");
|
||||
right: 25px;
|
||||
top: 50%;
|
||||
margin-top: -16px;
|
||||
@ -262,7 +283,7 @@
|
||||
.videoOperateBox .top {
|
||||
width: 33px;
|
||||
height: 28px;
|
||||
background: url("/static/videoControlIcon/top.png");
|
||||
background: url("../../static/videoControlIcon/top.png");
|
||||
top: 25px;
|
||||
left: 50%;
|
||||
margin-left: -16px;
|
||||
@ -271,7 +292,7 @@
|
||||
.videoOperateBox .bottom {
|
||||
width: 33px;
|
||||
height: 28px;
|
||||
background: url("/static/videoControlIcon/bottom.png");
|
||||
background: url("../../static/videoControlIcon/bottom.png");
|
||||
bottom: 25px;
|
||||
left: 50%;
|
||||
margin-left: -16px;
|
||||
@ -280,7 +301,7 @@
|
||||
// .videoOperateBox .center {
|
||||
// width: 44px;
|
||||
// height: 40px;
|
||||
// background: url("/static/videoControlIcon/center.png");
|
||||
// background: url("../../static/videoControlIcon/center.png");
|
||||
// left: 50%;
|
||||
// top: 50%;
|
||||
// margin-top: -20px;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user