cnhis-design-vue 2.1.111 → 2.1.112
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/CHANGELOG.md +7 -0
- package/es/age/index.js +2 -2
- package/es/big-table/index.js +23 -23
- package/es/button/index.js +2 -2
- package/es/captcha/index.js +3 -3
- package/es/card-reader-sdk/index.js +1 -1
- package/es/checkbox/index.js +1 -1
- package/es/color-picker/index.js +1 -1
- package/es/drag-layout/index.js +3 -3
- package/es/editor/index.js +1 -1
- package/es/ellipsis/index.js +1 -1
- package/es/fabric-chart/index.js +9 -9
- package/es/form-table/index.js +20 -20
- package/es/index/index.js +211 -206
- package/es/index/style.css +1 -1
- package/es/input/index.js +1 -1
- package/es/map/index.js +1 -1
- package/es/multi-chat/index.js +25 -25
- package/es/multi-chat-client/index.js +19 -19
- package/es/multi-chat-history/index.js +4 -4
- package/es/multi-chat-record/index.js +4 -4
- package/es/multi-chat-setting/index.js +20 -20
- package/es/multi-chat-sip/index.js +1 -1
- package/es/radio/index.js +1 -1
- package/es/scale-container/index.js +1 -1
- package/es/scale-view/index.js +27 -27
- package/es/select/index.js +4 -4
- package/es/select-label/index.js +3 -3
- package/es/select-person/index.js +2 -2
- package/es/select-tag/index.js +4 -4
- package/es/shortcut-setter/index.js +2 -2
- package/es/slider-tree/index.js +1 -1
- package/es/table-filter/index.js +62 -57
- package/es/table-filter/style.css +1 -1
- package/es/tag/index.js +1 -1
- package/es/verification-code/index.js +2 -2
- package/lib/cui.common.js +234 -229
- package/lib/cui.umd.js +234 -229
- package/lib/cui.umd.min.js +7 -7
- package/package.json +1 -1
- package/packages/table-filter/src/base-search-com/BaseSearch.vue +6 -1
package/package.json
CHANGED
|
@@ -849,8 +849,13 @@ export default create({
|
|
|
849
849
|
isCard() {
|
|
850
850
|
return this.TypeOfDisplay === 'cardNew' && this.isBatchSelect == 1
|
|
851
851
|
},
|
|
852
|
+
isHideSearchAndQuickSearch(){
|
|
853
|
+
let hideSearch = this.isShowSetting('hideSearch');
|
|
854
|
+
let hideQuickSearch = this.isShowSetting('hideQuickSearch');
|
|
855
|
+
return !hideSearch && !hideQuickSearch;
|
|
856
|
+
},
|
|
852
857
|
showApiSearch(){
|
|
853
|
-
return !this.outSearchFieldList?.length && this.isAvailableApiType
|
|
858
|
+
return !this.outSearchFieldList?.length && this.isAvailableApiType && !this.isHideSearchAndQuickSearch
|
|
854
859
|
},
|
|
855
860
|
// sql类型的列表, 且有筛选外显的时候不展示平铺列表的search
|
|
856
861
|
relatedSqlOutSearch() {
|