vue2-client 1.12.53 → 1.12.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -102,7 +102,7 @@ export default {
|
|
|
102
102
|
}
|
|
103
103
|
if (currentCol) {
|
|
104
104
|
// 更新当前列的宽度
|
|
105
|
-
const drawerWidth = isOpen ?
|
|
105
|
+
const drawerWidth = isOpen ? 27 : 2
|
|
106
106
|
// 强制更新样式
|
|
107
107
|
currentCol.style.cssText = `
|
|
108
108
|
flex: 0 0 ${drawerWidth}% !important;
|
|
@@ -195,7 +195,5 @@ export default {
|
|
|
195
195
|
.drawer-content {
|
|
196
196
|
height: 100%;
|
|
197
197
|
overflow-y: auto;
|
|
198
|
-
padding: 20px;
|
|
199
|
-
padding-left: 44px; /* 为开关留出空间 */
|
|
200
198
|
}
|
|
201
199
|
</style>
|