1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <a-drawer :width="500" title="搜索" placement="right" :open="openSearchModel" @close="onClose">
- <template #extra>
- <a-button style="margin-right: 8px" @click="clearSearch">清空搜索</a-button>
- <a-button type="primary" @click="getData">搜索</a-button>
- </template>
- <a-form :model="commomParams.search">
- <a-row :gutter="[10]">
- <a-col span="24">
- <a-form-item>
- <a-input addon-before="投放位置" v-model:value="commomParams.search.keyword" placeholder="请输入投放位置" @keyup.enter="getData"/>
- </a-form-item>
- </a-col>
- </a-row>
- </a-form>
- </a-drawer>
- </template>
-
- <script lang="ts" setup>
- import { ref, onMounted, watch, computed } from 'vue';
- import { useCommon } from '@/hooks/useCommon';
- let { store, commomParams, openSearchModel, hideSearch } = useCommon();
- let props = defineProps(['search_params']);
- const emit = defineEmits();
-
- openSearchModel = computed(() => {
- return store.state.openSearchModel;
- })
-
- // watch(() => props.search_params, (newVal) => {
- // emit('searchData', commomParams.value.search)
- // })
-
- const getData = () => {
- emit('searchData', commomParams.value.search);
- hideSearch()
- }
-
- // 清空搜索
- const clearSearch = () => {
- commomParams.value.search = {
- page: 1,
- pagesize: 10,
- sort: 'id',
- sortby: 'desc',
- keyword: ''
- }
- emit('clearData', commomParams.value.search);
- hideSearch()
- }
-
- const onClose = () => {
- clearSearch()
- hideSearch()
- }
- </script>
-
- <style>
- </style>
|