250 lines
6.0 KiB
Vue
250 lines
6.0 KiB
Vue
<!--
|
||
* @Author: gtz
|
||
* @Date: 2022-01-19 15:58:17
|
||
* @LastEditors: zhp
|
||
* @LastEditTime: 2024-01-24 17:01:21
|
||
* @Description: file content
|
||
* @FilePath: \mt-bus-fe\src\views\OperationalOverview\components\baseContainer\index.vue
|
||
-->
|
||
<template>
|
||
<div class="base-container" ref="baseContainer" :style="{ height: '100%', fontSize: 12 + 'px', padding: 12 + 'px' }"
|
||
:class="[{ 'no-padding': noPadding, 'border-none': !showLine }, 'base-container__' + size]">
|
||
<!-- <div class="base-container" :style="{height: height + 'px', fontSize: 12 + 'px', padding: 12 + 'px'}"> -->
|
||
<template v-if="showLine">
|
||
<div class="line" />
|
||
<div class="line line-vertical" />
|
||
<div class="line line-right" />
|
||
<div class="line line-right-vertical" />
|
||
<div class="line line-bottom" />
|
||
<div class="line line-bottom-vertical" />
|
||
<div class="line line-bottom-right" />
|
||
<div class="line line-bottom-right-vertical" />
|
||
</template>
|
||
|
||
<div class="bar-item">
|
||
<div v-if="title" class="bar-title" ds>
|
||
<span>
|
||
<svg-icon :icon-class="titleIcon" style="font-size: 1em; position: relative; top: .08em" />
|
||
{{ title }}
|
||
</span>
|
||
<!-- <span style="font-size: 20px;color:#52FFF8;margin-left: 10px;margin-top: 2px;">
|
||
{{ time +'-'+ time2 }}
|
||
</span> -->
|
||
</div>
|
||
<!-- <div v-if="true" class="bar-title">
|
||
<span>
|
||
<svg-icon :icon-class="titleIcon" style="font-size: 1em; position: relative; top: .08em" />
|
||
{{ title }}
|
||
</span>
|
||
</div> -->
|
||
<div class="bar-content" :class="{ 'p-0': noContentPadding }">
|
||
<slot />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'BaseContainer',
|
||
props: {
|
||
showLine: {
|
||
type: Boolean,
|
||
default: true
|
||
},
|
||
noPadding: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
back: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
noContentPadding: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
title: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
titleIcon: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
height: {
|
||
type: Number,
|
||
default: 200
|
||
},
|
||
baseSize: {
|
||
type: Number,
|
||
default: 12
|
||
},
|
||
beilv: {
|
||
type: Number,
|
||
default: 1
|
||
},
|
||
size: {
|
||
type: String,
|
||
default: ''
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
curIndex: 0,
|
||
time: null,
|
||
time2:null
|
||
// imgUrl: require(`../../../../assets/img/${this.back}.png`),
|
||
}
|
||
},
|
||
created() {
|
||
},
|
||
mounted () {
|
||
this.time = this.format(new Date().setHours(7,0,0));
|
||
// console.log(time);
|
||
//前一天时间
|
||
this.time2 = this.format(new Date().setHours(7, 0, 0) - 86400000 * 1);
|
||
console.log(new Date().setHours(7, 0, 0) - 86400000 * 1);
|
||
},
|
||
methods: {
|
||
add0(m) {
|
||
return m < 10 ? '0' + m : m
|
||
},
|
||
format(shijianchuo) {
|
||
//shijianchuo是整数,否则要parseInt转换
|
||
var time = new Date(shijianchuo);
|
||
var y = time.getFullYear();
|
||
var m = time.getMonth() + 1;
|
||
var d = time.getDate();
|
||
var h = time.getHours();
|
||
var mm = time.getMinutes();
|
||
var s = time.getSeconds();
|
||
return y + '-' + this.add0(m) + '-' + this.add0(d) + ' ' + h + '时'
|
||
},
|
||
changeTab(num) {
|
||
this.curIndex = num
|
||
this.$emit('tabSelect', num)
|
||
},
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
|
||
.base-container {
|
||
color: #fff;
|
||
width: 100%;
|
||
// background-color: rgba($color: #061027, $alpha: 0.15);
|
||
position: relative;
|
||
// border: 2px solid;
|
||
// background: url('../../../../assets/img/energy.png') no-repeat;
|
||
// background-size: 100% 100%;
|
||
&__small {
|
||
background: url(../../../../assets/img/short.png) no-repeat;
|
||
background-size: 100% 100%;
|
||
// background-position: 0 0;
|
||
}
|
||
|
||
&__middle {
|
||
background: url(../../../../assets/img/middle.png) no-repeat;
|
||
background-size: 100% 100%;
|
||
// background-position: 0 0;
|
||
}
|
||
|
||
&__large {
|
||
background: url(../../../../assets/img/high.png) no-repeat;
|
||
background-size: 100% 100%;
|
||
// background-position: 0 0;
|
||
}
|
||
&__eqStatus {
|
||
background: url(../../../../assets/img/short.png) no-repeat;
|
||
background-size: 100% 100%;
|
||
}
|
||
// border-radius: 40px 0px 40px 0px;
|
||
// border-image: linear-gradient(360deg, rgba(157, 246, 254, 0.05), rgba(100, 233, 252, 0.9)) 2 2;
|
||
// .line {
|
||
// position: absolute;
|
||
// border-top: 4px solid #52fff1;
|
||
// width: 2em;
|
||
// top: -0.25em;
|
||
// left: -0.25em;
|
||
// &-vertical {
|
||
// top: calc(-5em / 12);
|
||
// left: calc(-1em / 12);
|
||
// transform: rotate(90deg);
|
||
// transform-origin: left;
|
||
// }
|
||
// &-right {
|
||
// top: -0.25em;
|
||
// right: -0.25em;
|
||
// left: inherit;
|
||
// }
|
||
// &-right-vertical {
|
||
// top: calc(-5em / 12);
|
||
// right: calc(-1em / 12);
|
||
// left: inherit;
|
||
// transform: rotate(-90deg);
|
||
// transform-origin: right;
|
||
// }
|
||
// &-bottom {
|
||
// top: inherit;
|
||
// left: -0.25em;
|
||
// bottom: -0.25em;
|
||
// }
|
||
// &-bottom-vertical {
|
||
// top: inherit;
|
||
// left: calc(-1em / 12);
|
||
// bottom: calc(-5em / 12);
|
||
// transform: rotate(-90deg);
|
||
// transform-origin: left;
|
||
// }
|
||
// &-bottom-right {
|
||
// top: inherit;
|
||
// left: inherit;
|
||
// right: -0.25em;
|
||
// bottom: -0.25em;
|
||
// }
|
||
// &-bottom-right-vertical {
|
||
// top: inherit;
|
||
// left: inherit;
|
||
// right: calc(-1em / 12);
|
||
// bottom: calc(-5em / 12);
|
||
// transform: rotate(90deg);
|
||
// transform-origin: right;
|
||
// }
|
||
// }
|
||
|
||
.bar-item {
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.bar-title {
|
||
width: 100%;
|
||
color: #ffffff;
|
||
font-size: 24px;
|
||
padding: 0.67em;
|
||
display: flex;
|
||
}
|
||
|
||
.bar-content {
|
||
padding: 1em;
|
||
flex: 1 auto;
|
||
position: relative;
|
||
}
|
||
|
||
.no-padding {
|
||
padding: 0;
|
||
}
|
||
|
||
.p-0 {
|
||
padding: 0;
|
||
}
|
||
|
||
&.border-none {
|
||
border: none;
|
||
}
|
||
}
|
||
</style>
|