centaline-data-driven-v3 0.1.43 → 0.1.45
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/dist/centaline-data-driven-v3.umd.js +114 -114
- package/package.json +1 -1
- package/src/assets/commonWeb.css +7 -1
- package/src/components/web/Label.vue +1 -0
- package/src/components/web/SearchList/SearchTable.vue +2 -2
- package/src/components/web/TextBox.vue +1 -1
- package/src/components/web/Tree/Tree.vue +499 -368
- package/src/loader/src/Tree.js +304 -33
- package/src/main.js +4 -4
- package/src/views/Form.vue +2 -2
package/package.json
CHANGED
package/src/assets/commonWeb.css
CHANGED
|
@@ -587,6 +587,11 @@ body {
|
|
|
587
587
|
background-color: inherit;
|
|
588
588
|
}
|
|
589
589
|
|
|
590
|
+
.ct-table .left-fixation .el-checkbox {
|
|
591
|
+
padding: 0px;
|
|
592
|
+
vertical-align: -2px;
|
|
593
|
+
}
|
|
594
|
+
|
|
590
595
|
.ct-table .right-fixation {
|
|
591
596
|
position: sticky;
|
|
592
597
|
background-color: inherit;
|
|
@@ -780,7 +785,8 @@ body {
|
|
|
780
785
|
user-select: none;
|
|
781
786
|
/* 禁止文本选择 */
|
|
782
787
|
}
|
|
783
|
-
|
|
788
|
+
|
|
789
|
+
.ct-form .btnPadBom .el-checkbox {
|
|
784
790
|
height: 100% !important;
|
|
785
791
|
padding: 0 !important;
|
|
786
792
|
}
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
:rowspan="model.multiRowSpan" class="ct-td left-fixation-th checkbox-td"
|
|
30
30
|
:class="[model.tdClass]">
|
|
31
31
|
<el-checkbox v-model="model.selectAll" :indeterminate="model.isIndeterminate"
|
|
32
|
-
size="
|
|
32
|
+
size="small" @change="selectAll"></el-checkbox>
|
|
33
33
|
</th>
|
|
34
34
|
<template v-for="(column, colIndex) in columns" :key="colIndex">
|
|
35
35
|
<th v-if="column.show" class="ct-td ct-searchtable-th" :rowspan="column.rowspan"
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
align="center">
|
|
71
71
|
<el-checkbox
|
|
72
72
|
v-if="!model.rightCheckBoxColumn || common.getDataOfUpperLower(row, model.rightCheckBoxColumn) == 1"
|
|
73
|
-
v-model="row.$select" @change="selectRow()" size="
|
|
73
|
+
v-model="row.$select" @change="selectRow()" size="small" />
|
|
74
74
|
|
|
75
75
|
</td>
|
|
76
76
|
<template v-for="(column, colIndex) in model.dataFieldcolumns" :key="colIndex">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<el-input v-else :type="model.inputType" v-model="model.code1" v-bind="model.attrs" @input="input()"
|
|
17
17
|
@change="change()" :disabled="model.locked" :rows="model.rows" :readonly="model.readonly"
|
|
18
|
-
:show-password="model.inputType == 'password'" autocomplete="on"
|
|
18
|
+
:show-password="model.inputType == 'password'" :autocomplete="model.inputType == 'password'? 'new-password' : 'on'"
|
|
19
19
|
:maxlength="model.controlType !== Enum.ControlType.NumericTextBox ? model.maxValue1 : ''"
|
|
20
20
|
:show-word-limit="model.showWordLimit" clearable @keyup.enter.native="search()"
|
|
21
21
|
@keydown.enter.native="handleKeyDown" class="fieldControl">
|