...
|
...
|
@@ -316,12 +316,12 @@ |
|
|
//折叠
|
|
|
if (value){
|
|
|
this.$nextTick(function () {
|
|
|
menuDom.setAttribute("style","width:90px");
|
|
|
menuDom.setAttribute("style","width:90px;background-color: rgb(38, 56, 76);");
|
|
|
})
|
|
|
}else {
|
|
|
//不折叠
|
|
|
this.$nextTick(function () {
|
|
|
menuDom.setAttribute("style","width:250px");
|
|
|
menuDom.setAttribute("style","width:250px;background-color: rgb(38, 56, 76);");
|
|
|
})
|
|
|
|
|
|
}
|
...
|
...
|
|