|
@@ -346,7 +346,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="8" :sm="8">
|
|
<a-col :md="8" :sm="8">
|
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
|
|
|
+ <a-button type="primary" @click="handleSubmit" icon="search">查询</a-button>
|
|
<a-button type="primary" @click="searchRe" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
<a-button type="primary" @click="searchRe" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
</span>
|
|
</span>
|
|
</a-col>
|
|
</a-col>
|
|
@@ -1984,6 +1984,10 @@ export default {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
...mapGetters(['nickname', 'avatar', 'userInfo']),
|
|
...mapGetters(['nickname', 'avatar', 'userInfo']),
|
|
|
|
+ handleSubmit() {
|
|
|
|
+ this.searchQuery();
|
|
|
|
+ this.checkArr = [];
|
|
|
|
+ },
|
|
handleMoreTagsShow(val, type) {
|
|
handleMoreTagsShow(val, type) {
|
|
if (type === 'more') {
|
|
if (type === 'more') {
|
|
this.defaultFormList.forEach(item => {
|
|
this.defaultFormList.forEach(item => {
|
|
@@ -2843,6 +2847,7 @@ export default {
|
|
};
|
|
};
|
|
this.labelValue = [];
|
|
this.labelValue = [];
|
|
this.loadData(1);
|
|
this.loadData(1);
|
|
|
|
+ this.checkArr = [];
|
|
},
|
|
},
|
|
getList(value) {
|
|
getList(value) {
|
|
if (value) {
|
|
if (value) {
|