| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!-- 搜索表单 -->
- <template>
- <ele-card :body-style="{ paddingBottom: '8px' }">
- <ProSearch
- :items="formItems"
- ref="searchRef"
- @search="search"
- :initKeys="initKeys"
- :offset="1"
- ></ProSearch>
- </ele-card>
- </template>
- <script setup>
- import { reactive, ref, defineEmits } from 'vue';
- import ProSearch from '@/components/CommonPage/ProSearch2.vue';
- let { proxy } = getCurrentInstance();
- const emit = defineEmits(['search']);
- const godownList = ref([]);
- const formItems = computed(() => {
- return [
- {
- type: 'input',
- label: '审核员',
- prop: 'sysUserName'
- },
- {
- type: 'daterange',
- label: ' ',
- prop: 'time',
- props: {
- format: 'YYYY-MM-DD',
- valueFormat: 'YYYY-MM-DD',
- onChange: (value) => {
- initKeys.startDate = value ? value[0] : '';
- initKeys.endDate = value ? value[1] : '';
- searchRef.value?.setData(initKeys);
- }
- },
- colProps: {
- span: 6
- }
- }
- ];
- });
- const initKeys = reactive({
- startDate: '',
- endDate: '',
- sysUserName: ''
- });
- const searchRef = ref(null);
- /** 搜索 */
- const search = (data) => {
- emit('search', { ...data});
- };
- </script>
|