2025-06-25 12:55:58 +08:00
|
|
|
|
|
|
|
|
<template>
|
2025-06-26 01:29:16 +08:00
|
|
|
<cl-container>
|
|
|
|
|
<template v-slot:default>
|
|
|
|
|
<div class="cl-items cl-items-main">
|
|
|
|
|
<div class="cl-header">主策略</div>
|
|
|
|
|
<div class="cl-content">
|
|
|
|
|
<div class="cl-name">削峰填谷</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl-items">
|
|
|
|
|
<div class="cl-header">辅助策略</div>
|
|
|
|
|
<div class="cl-content">
|
|
|
|
|
<div class="cl-name">需量控制</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</cl-container>
|
2025-06-25 12:55:58 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-06-26 01:29:16 +08:00
|
|
|
import ClContainer from './../ClContainer.vue'
|
2025-07-12 15:55:05 +08:00
|
|
|
import getQuerySiteId from '@/mixins/ems/getQuerySiteId'
|
2025-06-25 12:55:58 +08:00
|
|
|
export default {
|
|
|
|
|
name:'DzjkClpzClyx',
|
2025-06-26 01:29:16 +08:00
|
|
|
components:{ClContainer},
|
2025-07-12 15:55:05 +08:00
|
|
|
mixins: [getQuerySiteId],
|
2025-06-25 12:55:58 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-07-12 15:55:05 +08:00
|
|
|
methods:{
|
|
|
|
|
init(){}
|
|
|
|
|
},
|
2025-06-25 12:55:58 +08:00
|
|
|
mounted(){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-06-26 01:29:16 +08:00
|
|
|
.clyx-main{
|
|
|
|
|
padding:0 12px 0 12px;
|
|
|
|
|
.cl-items{
|
|
|
|
|
width: 228px;
|
|
|
|
|
height: 156px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin:24px 12px 0 12px;
|
|
|
|
|
font-size:14px;
|
|
|
|
|
color:#333333;
|
|
|
|
|
border: 1px solid #eeeeee;
|
|
|
|
|
.cl-header{
|
|
|
|
|
background: #FFE5AC;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size:16px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.cl-content{
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 114px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
.cl-name{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top:50%;
|
|
|
|
|
left:50%;
|
|
|
|
|
transform: translate(-50%,-50%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.cl-items-main{
|
|
|
|
|
.cl-header{
|
|
|
|
|
background: #FFBE29;
|
|
|
|
|
}
|
|
|
|
|
.cl-content{
|
|
|
|
|
background-color: #FFF2CB;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-06-25 12:55:58 +08:00
|
|
|
</style>
|