布局认证目录

This commit is contained in:
qq787203167
2022-05-23 14:33:32 +08:00
parent 1ccab18a2f
commit 912f2dac24
5 changed files with 123 additions and 43 deletions
@@ -42,6 +42,9 @@
</a-col>
<span style="float: right;overflow: hidden;" class="table-page-search-submitButtons">
<a-col :md="12" :sm="24">
<globalAdvancedQuery ref="globalAdvancedQueryRef"
@handleSuperQuery="handleSuperQuery"
:fieldList="fieldList"/>
<a-button class="box-button" type="primary" @click="searchQuery">{{$t('query')}}</a-button>
<a-button class="box-button" style="margin-left: 8px" @click="searchReset">{{$t('reset')}}</a-button>
</a-col>
@@ -82,13 +85,13 @@
</template>
<script>
import currencySearch from '@/components/currencySearch/index'
import { getAction, postAction } from '@/api/manage'
import globalAdvancedQuery from '@/components/globalAdvancedQuery/index'
export default {
name: 'addModel',
components: {
currencySearch
globalAdvancedQuery
},
props: {
url: {
@@ -233,7 +236,20 @@
} else {
this.$message.warning(this.$t('selectLeastOne'))
}
}
},
handleSuperQuery(params, matchType) {
let sqp = {}
if (!params || (params && params.length == 0)) {
sqp['superQueryParams'] = ''
this.$refs.globalAdvancedQueryRef.superQueryFlag = false
} else {
this.$refs.globalAdvancedQueryRef.superQueryFlag = true
sqp['superQueryParams'] = encodeURI(JSON.stringify(params))
sqp['superQueryMatchType'] = matchType
}
this.queryParamQuery = sqp
this.getList()
},
}
}
</script>