|
|
@@ -37,7 +37,7 @@
|
|
|
|
|
|
<div style="position:relative">
|
|
|
<ul
|
|
|
- v-if="showHistoryQueryCondition && conditions.length > 0"
|
|
|
+ v-if="showHistoryQueryCondition && conditions.length > 0 && (disabled == null || disabled == false)"
|
|
|
v-click-outside="onClickOutside"
|
|
|
class="select-history"
|
|
|
>
|
|
|
@@ -197,6 +197,7 @@ export default {
|
|
|
* 清空搜索条件
|
|
|
*/
|
|
|
clearSearchCondition: function () {
|
|
|
+ this.showHistoryQueryCondition = false;
|
|
|
this.$emit('update:searchText', '');
|
|
|
this.$emit('simpleSearch');
|
|
|
},
|