vsyswin-ui 0.2.60 → 0.2.61
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/lib/vsyswin-ui.common.js +63 -50
- package/lib/vsyswin-ui.common.js.map +1 -1
- package/lib/vsyswin-ui.umd.js +63 -50
- package/lib/vsyswin-ui.umd.js.map +1 -1
- package/lib/vsyswin-ui.umd.min.js +7 -7
- package/lib/vsyswin-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/search-bar/src/search-bar.vue +12 -0
package/package.json
CHANGED
|
@@ -493,6 +493,18 @@ export default {
|
|
|
493
493
|
})
|
|
494
494
|
return list
|
|
495
495
|
},
|
|
496
|
+
// 设置底部标签,比如日期重新设置了值,但是底部没有标签,使用该方法来生成
|
|
497
|
+
/*
|
|
498
|
+
this.$set(this.searchList[10].itemList[0], 'value', [1649865600000, 1657727999000])
|
|
499
|
+
this.$set(this.searchList[10].itemList[0], 'isActive', true)
|
|
500
|
+
this.$nextTick(() => {
|
|
501
|
+
this.$refs.searchbarRef.setTagList()
|
|
502
|
+
})
|
|
503
|
+
*/
|
|
504
|
+
setTagList() {
|
|
505
|
+
const filterList = this.createTagList()
|
|
506
|
+
this.tagList = filterList
|
|
507
|
+
},
|
|
496
508
|
// 搜索按钮
|
|
497
509
|
handleSearch(skipShrink) {
|
|
498
510
|
if (this.$slots.default) {
|