You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
641 B

<template>
<tablePage
:apiName="state.apiName"
:searchOptions="state.searchOptions"
:searchFilter="state.searchFilter"
></tablePage>
</template>
<script setup>
// 看板送货单
defineOptions({ name: 'supplierDelState' })
import { reactive, ref, onMounted } from 'vue'
import tablePage from '@/components/tablePage/index.vue'
const state = reactive({
apiName:'cherysupplierdelstate',
searchFilter: {
deliveryNumber: null,
createTime:null,
},
searchOptions:[
{type:'input',prop:'deliveryNumber',label:'配送单号'},
{type:'datetimerange',prop:'createTime',label:'创建时间'},
],
})
</script>