centaline-data-driven-v3 0.1.35 → 0.1.36
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="ct-field">
|
|
3
3
|
<div class="el-form-item el-form-item--small"
|
|
4
|
-
:class="[!model.valid ? 'is-error' : '', 'label-' + model.labelPlacement]">
|
|
4
|
+
:class="[!model.valid ? 'is-error' : '',model.isList?'': 'label-' + model.labelPlacement]">
|
|
5
5
|
|
|
6
6
|
<!-- 使用单一元素结构 -->
|
|
7
7
|
<template v-if="model.isList">
|
|
@@ -94,7 +94,9 @@ const model = props.vmodel
|
|
|
94
94
|
flex-direction: column;
|
|
95
95
|
|
|
96
96
|
.el-form-item__label {
|
|
97
|
+
width: 100% !important;
|
|
97
98
|
justify-content: flex-start;
|
|
99
|
+
text-align: left;
|
|
98
100
|
}
|
|
99
101
|
}
|
|
100
102
|
</style>
|
|
@@ -65,7 +65,7 @@ const searchtreeHeight = ref(0)
|
|
|
65
65
|
const refleft = ref()
|
|
66
66
|
const reftree = ref()
|
|
67
67
|
|
|
68
|
-
const asideWidth = ref(Number(props.leftWidth ? props.leftWidth :
|
|
68
|
+
const asideWidth = ref(Number(props.leftWidth ? props.leftWidth : 300));
|
|
69
69
|
|
|
70
70
|
let isResizing = false;
|
|
71
71
|
let startX = 0;
|