|
@@ -23,7 +23,9 @@
|
|
|
</el-menu>
|
|
|
</el-scrollbar>
|
|
|
<div class="rloop" @click="updata" style="cursor: w-resize">
|
|
|
- <!-- <img src="../../../assets/logo/ic111.png" alt="" /> -->
|
|
|
+ <div class="log_open">
|
|
|
+ <div :class="leup ? 'arrows' : 'arrow'"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -107,6 +109,35 @@ export default {
|
|
|
z-index: 999;
|
|
|
right: 0;
|
|
|
top: 0;
|
|
|
+ > .log_open {
|
|
|
+ width: 8px;
|
|
|
+ height: 144px;
|
|
|
+ background: #385086;
|
|
|
+ border-radius: 0px 8px 8px 0px;
|
|
|
+ position: absolute;
|
|
|
+ top: 42%;
|
|
|
+ right: -8px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ > .arrows {
|
|
|
+ width: 6px;
|
|
|
+ height: 6px;
|
|
|
+ background: url("../../../assets/logo/ic_arrow_left.png") no-repeat;
|
|
|
+ }
|
|
|
+ > .arrow {
|
|
|
+ width: 6px;
|
|
|
+ height: 6px;
|
|
|
+ background: url("../../../assets/logo/ic_arrow_right.png") no-repeat;
|
|
|
+ }
|
|
|
+ // border-top-right-radius: 12px;
|
|
|
+ // border-bottom-right-radius: 12px;
|
|
|
+ }
|
|
|
+ > .log_open:hover {
|
|
|
+ background: #2d67e3;
|
|
|
+ > .rloop {
|
|
|
+ background: #2d67e3;
|
|
|
+ }
|
|
|
+ }
|
|
|
> img {
|
|
|
width: 20px;
|
|
|
height: 20px;
|