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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven-v3",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "private": false,
5
5
  "description": "centaline-data-driven-v3",
6
6
  "main": "dist/centaline-data-driven-v3.umd.js",
@@ -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
- .ct-form .btnPadBom .el-checkbox{
788
+
789
+ .ct-form .btnPadBom .el-checkbox {
784
790
  height: 100% !important;
785
791
  padding: 0 !important;
786
792
  }
@@ -105,6 +105,7 @@ defineExpose({
105
105
  line-height: 26px;
106
106
  font-size: 12px;
107
107
  color: #3D5ECC;
108
+ word-break: break-all;
108
109
  }
109
110
 
110
111
  .el-tag.el-tag--info {
@@ -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="default" @change="selectAll"></el-checkbox>
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="default" />
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">