vsyswin-ui 0.2.72 → 0.2.73

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": "vsyswin-ui",
3
- "version": "0.2.72",
3
+ "version": "0.2.73",
4
4
  "main": "lib/vsyswin-ui.umd.min.js",
5
5
  "private": false,
6
6
  "description": "Vue2.x的应用组件库.",
@@ -87,6 +87,10 @@
87
87
  z-index: $--zindex-modal;
88
88
  overflow: hidden;
89
89
 
90
+ ::v-deep .el-range-editor--small .el-range-separator {
91
+ line-height: 28px;
92
+ }
93
+
90
94
  @include e(wrap) {
91
95
  border: $--border-base;
92
96
  border-bottom: none;
@@ -226,6 +226,9 @@
226
226
  <el-option v-for="opt in item.options" :key="opt.id" :label="opt.label" :value="opt.value"></el-option>
227
227
  </el-select>
228
228
  </template>
229
+ <template v-else-if="item.type === 'slot'">
230
+ <slot :name="item.slot" :item="item">内容为空</slot>
231
+ </template>
229
232
  </li>
230
233
  </ul>
231
234
  </div>
@@ -457,6 +460,10 @@ export default {
457
460
  // 自定义条件标签的显示
458
461
  type: Boolean,
459
462
  default: false
463
+ },
464
+ maxConditionLength: {
465
+ type: Number,
466
+ default: 4
460
467
  }
461
468
  },
462
469
  data() {
@@ -464,7 +471,6 @@ export default {
464
471
  keyword: '',
465
472
  currentSearchList: [],
466
473
  shrinkFilterList: false,
467
- maxConditionLength: 4,
468
474
  conditionList: [],
469
475
  conditionValue: '',
470
476
  currentData: {},