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.
Files changed (41) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/es/age/index.js +2 -2
  3. package/es/big-table/index.js +23 -23
  4. package/es/button/index.js +2 -2
  5. package/es/captcha/index.js +3 -3
  6. package/es/card-reader-sdk/index.js +1 -1
  7. package/es/checkbox/index.js +1 -1
  8. package/es/color-picker/index.js +1 -1
  9. package/es/drag-layout/index.js +3 -3
  10. package/es/editor/index.js +1 -1
  11. package/es/ellipsis/index.js +1 -1
  12. package/es/fabric-chart/index.js +9 -9
  13. package/es/form-table/index.js +20 -20
  14. package/es/index/index.js +211 -206
  15. package/es/index/style.css +1 -1
  16. package/es/input/index.js +1 -1
  17. package/es/map/index.js +1 -1
  18. package/es/multi-chat/index.js +25 -25
  19. package/es/multi-chat-client/index.js +19 -19
  20. package/es/multi-chat-history/index.js +4 -4
  21. package/es/multi-chat-record/index.js +4 -4
  22. package/es/multi-chat-setting/index.js +20 -20
  23. package/es/multi-chat-sip/index.js +1 -1
  24. package/es/radio/index.js +1 -1
  25. package/es/scale-container/index.js +1 -1
  26. package/es/scale-view/index.js +27 -27
  27. package/es/select/index.js +4 -4
  28. package/es/select-label/index.js +3 -3
  29. package/es/select-person/index.js +2 -2
  30. package/es/select-tag/index.js +4 -4
  31. package/es/shortcut-setter/index.js +2 -2
  32. package/es/slider-tree/index.js +1 -1
  33. package/es/table-filter/index.js +62 -57
  34. package/es/table-filter/style.css +1 -1
  35. package/es/tag/index.js +1 -1
  36. package/es/verification-code/index.js +2 -2
  37. package/lib/cui.common.js +234 -229
  38. package/lib/cui.umd.js +234 -229
  39. package/lib/cui.umd.min.js +7 -7
  40. package/package.json +1 -1
  41. package/packages/table-filter/src/base-search-com/BaseSearch.vue +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "2.1.111",
3
+ "version": "2.1.112",
4
4
  "description": "前端业务UI库",
5
5
  "keyword": "cnhis-design-vue vue cnhis",
6
6
  "homepage": "http://dv.cnhis.com/",
@@ -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() {