vsyswin-ui 0.2.47 → 0.2.48

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/README.md CHANGED
@@ -41,7 +41,7 @@ Vue.use(vSyswinUI)
41
41
  Vue.config.productionTip = false
42
42
 
43
43
  new Vue({
44
- render: (h) => h(App)
44
+ render: h => h(App)
45
45
  }).$mount('#app')
46
46
  ```
47
47
 
@@ -812,7 +812,7 @@ slotCell 自定义表格内容,设置的 String
812
812
  let filterItems = JSON.parse(JSON.stringify(this.filterItems))
813
813
  let timeVal = JSON.parse(JSON.stringify(this.timeVal))
814
814
  let keyword = JSON.parse(JSON.stringify(keyField))
815
- let len = this.savedCondition.filter((item) => item.label === '搜索条件' + Number(this.savedCondition.length + 1)).length
815
+ let len = this.savedCondition.filter(item => item.label === '搜索条件' + Number(this.savedCondition.length + 1)).length
816
816
  let obj = {
817
817
  label: len > 0 ? '搜索条件' + Number(this.savedCondition.length + 2) : '搜索条件' + Number(this.savedCondition.length + 1),
818
818
  value: this.savedCondition.length + 1,
@@ -829,15 +829,13 @@ slotCell 自定义表格内容,设置的 String
829
829
  },
830
830
  // 选择保存的搜索条件
831
831
  selectChange(ids) {
832
- // debugger;
833
- let self = this
834
- this.savedCondition.forEach(function (item) {
832
+ this.savedCondition.forEach(item => {
835
833
  if (item.value == ids) {
836
- self.filterItems = JSON.parse(JSON.stringify(item.content.filterItems))
837
- self.tagList = JSON.parse(JSON.stringify(item.content.tagList))
838
- self.timeVal = JSON.parse(JSON.stringify(item.content.timeVal))
839
- self.$nextTick(() => {
840
- self.$refs.syNewsearchbar.keyword = JSON.parse(JSON.stringify(item.content.keyword))
834
+ this.filterItems = JSON.parse(JSON.stringify(item.content.filterItems))
835
+ this.tagList = JSON.parse(JSON.stringify(item.content.tagList))
836
+ this.timeVal = JSON.parse(JSON.stringify(item.content.timeVal))
837
+ this.$nextTick(() => {
838
+ this.$refs.syNewsearchbar.keyword = JSON.parse(JSON.stringify(item.content.keyword))
841
839
  })
842
840
  }
843
841
  })
@@ -846,11 +844,10 @@ slotCell 自定义表格内容,设置的 String
846
844
  searchTables(keyWord) {
847
845
  this.updateTagList()
848
846
  this.$emit('filter', this.tagList, keyWord)
849
- this.$emit('tableSearchHeightChange', 200)
850
847
  },
851
848
  updateTagList() {
852
849
  let tags = []
853
- this.filterItems.forEach((item) => {
850
+ this.filterItems.forEach(item => {
854
851
  item.itemList.forEach((sub, index) => {
855
852
  if (sub.isActive) {
856
853
  tags.push(this.createTag(item, sub, index))
@@ -859,7 +856,7 @@ slotCell 自定义表格内容,设置的 String
859
856
  })
860
857
  // 如果是自己选择的时间段
861
858
  let timeVal = this.timeVal
862
- tags.forEach((sub) => {
859
+ tags.forEach(sub => {
863
860
  if (sub.pId === '2' && timeVal && timeVal.length) {
864
861
  sub.name = timeVal[0] + '至' + timeVal[1]
865
862
  sub.id = '2'
@@ -873,7 +870,7 @@ slotCell 自定义表格内容,设置的 String
873
870
  },
874
871
  // 收起展开过滤选项
875
872
  shrinkFilterItem(itemId) {
876
- let item = this.filterItems.find((item) => item.id === itemId)
873
+ let item = this.filterItems.find(item => item.id === itemId)
877
874
  item.isShrink = !item.isShrink
878
875
  },
879
876
  // 创建tag
@@ -898,7 +895,7 @@ slotCell 自定义表格内容,设置的 String
898
895
  },
899
896
  // 点击过滤选项(单选)
900
897
  clickItemHandle(itemId, listItemId, item, listItem, index) {
901
- let activeIndex = item.itemList.findIndex((item) => item.isActive)
898
+ let activeIndex = item.itemList.findIndex(item => item.isActive)
902
899
  if (activeIndex > -1 && activeIndex !== index) {
903
900
  item.itemList[activeIndex].isActive = false
904
901
  }
@@ -906,8 +903,8 @@ slotCell 自定义表格内容,设置的 String
906
903
  },
907
904
  // 清空过滤选项
908
905
  clearTags() {
909
- this.filterItems.forEach((item) => {
910
- item.itemList.forEach((sub) => {
906
+ this.filterItems.forEach(item => {
907
+ item.itemList.forEach(sub => {
911
908
  this.$set(sub, 'isActive', false)
912
909
  })
913
910
  })
@@ -919,36 +916,35 @@ slotCell 自定义表格内容,设置的 String
919
916
  })
920
917
  },
921
918
  deleteItem(index) {
922
- let self = this
923
- self.$nextTick(() => {
924
- self.$refs.syNewsearchbar.choosedCondition = ''
925
- self.$refs.syNewsearchbar.keyword = ''
919
+ this.$nextTick(() => {
920
+ this.$refs.syNewsearchbar.choosedCondition = ''
921
+ this.$refs.syNewsearchbar.keyword = ''
926
922
  })
927
- self.savedCondition.splice(index, 1)
928
- localStorage.setItem('apportionCalculateCriteria', JSON.stringify(self.savedCondition))
929
- self.filterItems.forEach((item) => {
930
- item.itemList.forEach((sub) => {
931
- self.$set(sub, 'isActive', false)
923
+ this.savedCondition.splice(index, 1)
924
+ localStorage.setItem('apportionCalculateCriteria', JSON.stringify(this.savedCondition))
925
+ this.filterItems.forEach(item => {
926
+ item.itemList.forEach(sub => {
927
+ this.$set(sub, 'isActive', false)
932
928
  })
933
929
  })
934
- self.tagList = []
930
+ this.tagList = []
935
931
  },
936
932
  // 选择所属账期时间
937
933
  handleTimePicker(value) {
938
934
  if (!this.timeVal) {
939
- this.filterItems.forEach((ele) => {
935
+ this.filterItems.forEach(ele => {
940
936
  if (ele.id === '2') {
941
937
  ele.itemList[0].isActive = false
942
- ele.itemList = ele.itemList.map((item) => {
938
+ ele.itemList = ele.itemList.map(item => {
943
939
  return item
944
940
  })
945
941
  }
946
942
  })
947
943
  } else {
948
- this.filterItems.forEach((ele) => {
944
+ this.filterItems.forEach(ele => {
949
945
  if (ele.id === '2') {
950
946
  ele.itemList[0].isActive = true
951
- ele.itemList = ele.itemList.map((item) => {
947
+ ele.itemList = ele.itemList.map(item => {
952
948
  return item
953
949
  })
954
950
  }
@@ -37157,21 +37157,6 @@ module.exports = !nativeAssign || fails(function () {
37157
37157
  })));
37158
37158
 
37159
37159
 
37160
- /***/ }),
37161
-
37162
- /***/ "61f9":
37163
- /***/ (function(module, exports, __webpack_require__) {
37164
-
37165
- // style-loader: Adds some css to the DOM by adding a <style> tag
37166
-
37167
- // load the styles
37168
- var content = __webpack_require__("9a24");
37169
- if(typeof content === 'string') content = [[module.i, content, '']];
37170
- if(content.locals) module.exports = content.locals;
37171
- // add the styles to the DOM
37172
- var add = __webpack_require__("499e").default
37173
- var update = add("4d8a8a28", content, true, {"sourceMap":false,"shadowMode":false});
37174
-
37175
37160
  /***/ }),
37176
37161
 
37177
37162
  /***/ "62e4":
@@ -38361,17 +38346,6 @@ var update = add("4299bdf5", content, true, {"sourceMap":false,"shadowMode":fals
38361
38346
  })));
38362
38347
 
38363
38348
 
38364
- /***/ }),
38365
-
38366
- /***/ "6ebf":
38367
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
38368
-
38369
- "use strict";
38370
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_newSearchBar_vue_vue_type_style_index_0_id_761d1578_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("61f9");
38371
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_newSearchBar_vue_vue_type_style_index_0_id_761d1578_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_newSearchBar_vue_vue_type_style_index_0_id_761d1578_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
38372
- /* unused harmony reexport * */
38373
-
38374
-
38375
38349
  /***/ }),
38376
38350
 
38377
38351
  /***/ "6eeb":
@@ -40527,6 +40501,17 @@ module.exports = function (S, index, unicode) {
40527
40501
 
40528
40502
  module.exports = require("vue");
40529
40503
 
40504
+ /***/ }),
40505
+
40506
+ /***/ "8bfd":
40507
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
40508
+
40509
+ "use strict";
40510
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_newSearchBar_vue_vue_type_style_index_0_id_2592bd66_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("ea33");
40511
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_newSearchBar_vue_vue_type_style_index_0_id_2592bd66_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_newSearchBar_vue_vue_type_style_index_0_id_2592bd66_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
40512
+ /* unused harmony reexport * */
40513
+
40514
+
40530
40515
  /***/ }),
40531
40516
 
40532
40517
  /***/ "8c94":
@@ -42409,20 +42394,6 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
42409
42394
  });
42410
42395
 
42411
42396
 
42412
- /***/ }),
42413
-
42414
- /***/ "9a24":
42415
- /***/ (function(module, exports, __webpack_require__) {
42416
-
42417
- // Imports
42418
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
42419
- exports = ___CSS_LOADER_API_IMPORT___(false);
42420
- // Module
42421
- exports.push([module.i, ".syNewsearchbar .search-wrap[data-v-761d1578]{position:relative;height:64px;box-sizing:border-box;overflow:hidden;padding:16px 0;min-width:850px}.syNewsearchbar .search-wrap .search-input[data-v-761d1578]{width:408px;float:left}.syNewsearchbar .search-wrap .search-input i[data-v-761d1578]{cursor:pointer}.syNewsearchbar .search-wrap .search-input-small[data-v-761d1578]{width:336px}.syNewsearchbar .search-wrap .dropdown-search[data-v-761d1578]{color:#027aff;font-size:14px;float:left;margin:10px 10px 0;cursor:pointer}.syNewsearchbar .search-wrap .header-filter-btns[data-v-761d1578]{display:flex;align-items:center;position:absolute;right:0;top:16px;height:32px}.syNewsearchbar .search-btn[data-v-761d1578]{background:#027aff;color:#fefafa;font-size:14px;height:32px;width:72px;border:1px solid #027aff}.syNewsearchbar .reset-btn[data-v-761d1578]{background:#fff;border:1px solid #d9d9d9;color:rgba(0,0,0,.65)}.syNewsearchbar .filter-wrap[data-v-761d1578]{position:relative;width:100%;box-sizing:border-box;position:absolute;background:#fafafa;z-index:999;transition:all .3s;overflow:hidden;padding:0 25px;margin-left:-25px}.syNewsearchbar .filter-wrap .save-btn[data-v-761d1578]{margin-left:5px;float:right}.syNewsearchbar .filter-wrap .condition-selector[data-v-761d1578]{float:right}.syNewsearchbar .filter-wrap .filter-list[data-v-761d1578]{margin-top:20px;border-top:1px solid #eaedf1;border-left:1px solid #eaedf1;border-right:1px solid #eaedf1}.syNewsearchbar .filter-wrap .filter-list ul[data-v-761d1578]{overflow:hidden;position:relative}.syNewsearchbar .filter-wrap .filter-list .filter-item[data-v-761d1578]{border-bottom:1px solid #eaedf1;text-align:center;font-size:14px;position:relative;height:auto}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-title[data-v-761d1578]{position:absolute;width:95px;left:0;top:0;bottom:0;height:auto;line-height:48px;background:#f6f7fb;color:#5e6470;border-right:1px solid #eaedf1}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list[data-v-761d1578]{position:relative;left:100px;right:0;padding-right:50px;box-sizing:border-box}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list ul>li[data-v-761d1578]{float:left;color:rgba(0,0,0,.65);line-height:48px;padding:0 12px;cursor:pointer}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list ul>li.isActive[data-v-761d1578]{color:#027aff}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters[data-v-761d1578]{width:100%}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters .showMore[data-v-761d1578]{float:right;line-height:48px;margin-right:36px;color:#027aff;font-size:12px}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div[data-v-761d1578]{width:100%;height:auto}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div>div[data-v-761d1578]{float:left;height:40px;line-height:30px}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div>div p[data-v-761d1578]{height:100%;line-height:30px;padding:0 4px 0 24px;float:left}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div>div .operators[data-v-761d1578]{float:left}.syNewsearchbar .filter-wrap .h0[data-v-761d1578]{height:0;overflow:hidden;margin-bottom:0}.syNewsearchbar .filter-wrap .mt0[data-v-761d1578]{margin-top:0}.syNewsearchbar .filter-wrap .mt10[data-v-761d1578]{margin-top:10px}.syNewsearchbar .filter-wrap .mb10[data-v-761d1578]{margin-bottom:10px}.syNewsearchbar .filter-wrap .h40[data-v-761d1578]{height:40px;overflow:hidden}.syNewsearchbar .clearfix[data-v-761d1578]:after{content:\".\";height:0;display:block;visibility:hidden;clear:both;overflow:hidden}.syNewsearchbar .rotate180[data-v-761d1578]{transform:rotate(180deg)}", ""]);
42422
- // Exports
42423
- module.exports = exports;
42424
-
42425
-
42426
42397
  /***/ }),
42427
42398
 
42428
42399
  /***/ "9ac4":
@@ -64723,6 +64694,21 @@ module.exports = function (it) {
64723
64694
  };
64724
64695
 
64725
64696
 
64697
+ /***/ }),
64698
+
64699
+ /***/ "ea33":
64700
+ /***/ (function(module, exports, __webpack_require__) {
64701
+
64702
+ // style-loader: Adds some css to the DOM by adding a <style> tag
64703
+
64704
+ // load the styles
64705
+ var content = __webpack_require__("fec5");
64706
+ if(typeof content === 'string') content = [[module.i, content, '']];
64707
+ if(content.locals) module.exports = content.locals;
64708
+ // add the styles to the DOM
64709
+ var add = __webpack_require__("499e").default
64710
+ var update = add("0b3743cf", content, true, {"sourceMap":false,"shadowMode":false});
64711
+
64726
64712
  /***/ }),
64727
64713
 
64728
64714
  /***/ "ebe4":
@@ -68663,15 +68649,15 @@ paging.install = function (Vue) {
68663
68649
 
68664
68650
 
68665
68651
  /* harmony default export */ var packages_paging = (paging);
68666
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"59e007e4-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/newSearchBar/src/newSearchBar.vue?vue&type=template&id=761d1578&scoped=true&
68667
- var newSearchBarvue_type_template_id_761d1578_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"syNewsearchbar"},[_c('section',{staticClass:"search-wrap"},[(_vm.slotName)?_vm._t(_vm.slotName):_c('el-input',{staticClass:"search-input",class:{ 'search-input-small': _vm.smallSearchWidth === true },attrs:{"clearable":"","placeholder":_vm.placeholder},model:{value:(_vm.keyword),callback:function ($$v) {_vm.keyword=(typeof $$v === 'string'? $$v.trim(): $$v)},expression:"keyword"}},[_vm._t("filtrateConditions",null,{"slot":"suffix"})],2),(_vm.showFilter)?_c('a',{staticClass:"dropdown-search",on:{"click":_vm.shrinkFilter}},[_vm._v(" "+_vm._s(_vm.shrinkFilterList ? '更多筛选' : '更多筛选')+" "),_c('i',{staticClass:"el-icon-caret-bottom",class:{ rotate180: !_vm.shrinkFilterList }})]):_vm._e(),_c('el-button',{staticClass:"search-btn hover-btn",attrs:{"size":"small"},on:{"click":function($event){$event.stopPropagation();return _vm.searchTable($event)}}},[_vm._v("查询")]),_c('el-button',{staticClass:"search-btn reset-btn",attrs:{"size":"small"},on:{"click":_vm.clearTags}},[_vm._v("重置")]),_c('div',{staticClass:"header-filter-btns"},[_vm._t("listBtns")],2)],2),_c('section',{staticClass:"filter-wrap",style:({
68652
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"59e007e4-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/newSearchBar/src/newSearchBar.vue?vue&type=template&id=2592bd66&scoped=true&
68653
+ var newSearchBarvue_type_template_id_2592bd66_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"syNewsearchbar"},[_c('section',{staticClass:"search-wrap"},[(_vm.slotName)?_vm._t(_vm.slotName):_c('el-input',{staticClass:"search-input",class:{ 'search-input-small': _vm.smallSearchWidth === true },attrs:{"clearable":"","placeholder":_vm.placeholder},model:{value:(_vm.keyword),callback:function ($$v) {_vm.keyword=(typeof $$v === 'string'? $$v.trim(): $$v)},expression:"keyword"}},[_vm._t("filtrateConditions",null,{"slot":"suffix"})],2),(_vm.showFilter)?_c('a',{staticClass:"dropdown-search",on:{"click":_vm.shrinkFilter}},[_vm._v(" "+_vm._s(_vm.shrinkFilterList ? '更多筛选' : '更多筛选')+" "),_c('i',{staticClass:"el-icon-caret-bottom",class:{ rotate180: !_vm.shrinkFilterList }})]):_vm._e(),_c('el-button',{staticClass:"search-btn hover-btn",attrs:{"size":"small"},on:{"click":function($event){$event.stopPropagation();return _vm.searchTable($event)}}},[_vm._v("查询")]),(_vm.resetBtnFlag)?_c('el-button',{staticClass:"search-btn reset-btn",attrs:{"size":"small"},on:{"click":_vm.clearTags}},[_vm._v("重置")]):_vm._e(),_c('div',{staticClass:"header-filter-btns"},[_vm._t("listBtns")],2)],2),_c('section',{staticClass:"filter-wrap",style:({
68668
68654
  maxHeight: _vm.shrinkFilterList ? '0px' : (_vm.windowHeight + "px"),
68669
68655
  boxShadow: _vm.shrinkFilterList ? 'none' : 'rgba(0, 0, 0, 0.12) 0px 10px 20px 0px'
68670
68656
  })},[_c('div',{staticClass:"filter-list",class:{ h0: _vm.shrinkFilterList, mt0: _vm.shrinkFilterList }},[_vm._t("default")],2),(_vm.showSaveCondition)?_c('div',{staticClass:"mt10 mb10 clearfix"},[_c('el-button',{staticClass:"save-btn search-btn reset-btn",attrs:{"size":"small"},on:{"click":_vm.saveScreeningCriteria}},[_vm._v("保存")]),_c('el-select',{staticClass:"condition-selector",attrs:{"size":"small","clearable":""},on:{"change":_vm.selectChange},model:{value:(_vm.choosedCondition),callback:function ($$v) {_vm.choosedCondition=$$v},expression:"choosedCondition"}},_vm._l((_vm.savedCondition),function(item,index){return _c('el-option',{key:index,attrs:{"label":item.label,"value":item.value,"placeholder":"已保存的条件"}},[_c('span',{staticStyle:{"float":"left"}},[_vm._v(_vm._s(item.label))]),_c('span',{staticStyle:{"float":"right"}},[_c('i',{staticClass:"el-icon-circle-close",on:{"click":function($event){$event.stopPropagation();return _vm.deleteItem(index)}}})])])}),1)],1):_vm._e()])])}
68671
- var newSearchBarvue_type_template_id_761d1578_scoped_true_staticRenderFns = []
68657
+ var newSearchBarvue_type_template_id_2592bd66_scoped_true_staticRenderFns = []
68672
68658
 
68673
68659
 
68674
- // CONCATENATED MODULE: ./packages/newSearchBar/src/newSearchBar.vue?vue&type=template&id=761d1578&scoped=true&
68660
+ // CONCATENATED MODULE: ./packages/newSearchBar/src/newSearchBar.vue?vue&type=template&id=2592bd66&scoped=true&
68675
68661
 
68676
68662
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/newSearchBar/src/newSearchBar.vue?vue&type=script&lang=js&
68677
68663
  //
@@ -68758,6 +68744,10 @@ var newSearchBarvue_type_template_id_761d1578_scoped_true_staticRenderFns = []
68758
68744
  showSaveCondition: {
68759
68745
  type: Boolean,
68760
68746
  default: true
68747
+ },
68748
+ resetBtnFlag: {
68749
+ type: Boolean,
68750
+ default: true
68761
68751
  }
68762
68752
  },
68763
68753
  created: function created() {
@@ -68806,8 +68796,8 @@ var newSearchBarvue_type_template_id_761d1578_scoped_true_staticRenderFns = []
68806
68796
  });
68807
68797
  // CONCATENATED MODULE: ./packages/newSearchBar/src/newSearchBar.vue?vue&type=script&lang=js&
68808
68798
  /* harmony default export */ var src_newSearchBarvue_type_script_lang_js_ = (newSearchBarvue_type_script_lang_js_);
68809
- // EXTERNAL MODULE: ./packages/newSearchBar/src/newSearchBar.vue?vue&type=style&index=0&id=761d1578&lang=scss&scoped=true&
68810
- var newSearchBarvue_type_style_index_0_id_761d1578_lang_scss_scoped_true_ = __webpack_require__("6ebf");
68799
+ // EXTERNAL MODULE: ./packages/newSearchBar/src/newSearchBar.vue?vue&type=style&index=0&id=2592bd66&lang=scss&scoped=true&
68800
+ var newSearchBarvue_type_style_index_0_id_2592bd66_lang_scss_scoped_true_ = __webpack_require__("8bfd");
68811
68801
 
68812
68802
  // CONCATENATED MODULE: ./packages/newSearchBar/src/newSearchBar.vue
68813
68803
 
@@ -68820,11 +68810,11 @@ var newSearchBarvue_type_style_index_0_id_761d1578_lang_scss_scoped_true_ = __we
68820
68810
 
68821
68811
  var newSearchBar_component = normalizeComponent(
68822
68812
  src_newSearchBarvue_type_script_lang_js_,
68823
- newSearchBarvue_type_template_id_761d1578_scoped_true_render,
68824
- newSearchBarvue_type_template_id_761d1578_scoped_true_staticRenderFns,
68813
+ newSearchBarvue_type_template_id_2592bd66_scoped_true_render,
68814
+ newSearchBarvue_type_template_id_2592bd66_scoped_true_staticRenderFns,
68825
68815
  false,
68826
68816
  null,
68827
- "761d1578",
68817
+ "2592bd66",
68828
68818
  null
68829
68819
 
68830
68820
  )
@@ -70297,6 +70287,20 @@ var global = __webpack_require__("da84");
70297
70287
  module.exports = global.Promise;
70298
70288
 
70299
70289
 
70290
+ /***/ }),
70291
+
70292
+ /***/ "fec5":
70293
+ /***/ (function(module, exports, __webpack_require__) {
70294
+
70295
+ // Imports
70296
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
70297
+ exports = ___CSS_LOADER_API_IMPORT___(false);
70298
+ // Module
70299
+ exports.push([module.i, ".syNewsearchbar .search-wrap[data-v-2592bd66]{position:relative;height:64px;box-sizing:border-box;overflow:hidden;padding:16px 0;min-width:850px}.syNewsearchbar .search-wrap .search-input[data-v-2592bd66]{width:408px;float:left}.syNewsearchbar .search-wrap .search-input i[data-v-2592bd66]{cursor:pointer}.syNewsearchbar .search-wrap .search-input-small[data-v-2592bd66]{width:336px}.syNewsearchbar .search-wrap .dropdown-search[data-v-2592bd66]{color:#027aff;font-size:14px;float:left;margin:10px 10px 0;cursor:pointer}.syNewsearchbar .search-wrap .header-filter-btns[data-v-2592bd66]{display:flex;align-items:center;position:absolute;right:0;top:16px;height:32px}.syNewsearchbar .search-btn[data-v-2592bd66]{background:#027aff;color:#fefafa;font-size:14px;height:32px;width:72px;border:1px solid #027aff}.syNewsearchbar .reset-btn[data-v-2592bd66]{background:#fff;border:1px solid #d9d9d9;color:rgba(0,0,0,.65)}.syNewsearchbar .filter-wrap[data-v-2592bd66]{position:relative;width:100%;box-sizing:border-box;position:absolute;background:#fafafa;z-index:999;transition:all .3s;overflow:hidden;padding:0 25px;margin-left:-25px}.syNewsearchbar .filter-wrap .save-btn[data-v-2592bd66]{margin-left:5px;float:right}.syNewsearchbar .filter-wrap .condition-selector[data-v-2592bd66]{float:right}.syNewsearchbar .filter-wrap .filter-list[data-v-2592bd66]{margin-top:20px;border-top:1px solid #eaedf1;border-left:1px solid #eaedf1;border-right:1px solid #eaedf1}.syNewsearchbar .filter-wrap .filter-list ul[data-v-2592bd66]{overflow:hidden;position:relative}.syNewsearchbar .filter-wrap .filter-list .filter-item[data-v-2592bd66]{border-bottom:1px solid #eaedf1;text-align:center;font-size:14px;position:relative;height:auto}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-title[data-v-2592bd66]{position:absolute;width:95px;left:0;top:0;bottom:0;height:auto;line-height:48px;background:#f6f7fb;color:#5e6470;border-right:1px solid #eaedf1}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list[data-v-2592bd66]{position:relative;left:100px;right:0;padding-right:50px;box-sizing:border-box}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list ul>li[data-v-2592bd66]{float:left;color:rgba(0,0,0,.65);line-height:48px;padding:0 12px;cursor:pointer}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list ul>li.isActive[data-v-2592bd66]{color:#027aff}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters[data-v-2592bd66]{width:100%}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters .showMore[data-v-2592bd66]{float:right;line-height:48px;margin-right:36px;color:#027aff;font-size:12px}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div[data-v-2592bd66]{width:100%;height:auto}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div>div[data-v-2592bd66]{float:left;height:40px;line-height:30px}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div>div p[data-v-2592bd66]{height:100%;line-height:30px;padding:0 4px 0 24px;float:left}.syNewsearchbar .filter-wrap .filter-list .filter-item .item-list .moreFilters>div>div .operators[data-v-2592bd66]{float:left}.syNewsearchbar .filter-wrap .h0[data-v-2592bd66]{height:0;overflow:hidden;margin-bottom:0}.syNewsearchbar .filter-wrap .mt0[data-v-2592bd66]{margin-top:0}.syNewsearchbar .filter-wrap .mt10[data-v-2592bd66]{margin-top:10px}.syNewsearchbar .filter-wrap .mb10[data-v-2592bd66]{margin-bottom:10px}.syNewsearchbar .filter-wrap .h40[data-v-2592bd66]{height:40px;overflow:hidden}.syNewsearchbar .clearfix[data-v-2592bd66]:after{content:\".\";height:0;display:block;visibility:hidden;clear:both;overflow:hidden}.syNewsearchbar .rotate180[data-v-2592bd66]{transform:rotate(180deg)}", ""]);
70300
+ // Exports
70301
+ module.exports = exports;
70302
+
70303
+
70300
70304
  /***/ }),
70301
70305
 
70302
70306
  /***/ "ffff":