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
647 B

<template>
<tablePage
:apiName="state.apiName"
:searchOptions="state.searchOptions"
:searchFilter="state.searchFilter"
></tablePage>
</template>
<script setup>
// 计划协议
defineOptions({ name: 'supplierSaWeek' })
import { reactive, ref, onMounted } from 'vue'
import tablePage from '@/components/tablePage/index.vue'
const state = reactive({
apiName:'cherysuppliersaweek',
searchFilter: {
scheduleAgreement: null,
creationTime: null
},
searchOptions:[
{type:'input',prop:'scheduleAgreement',label:'计划协议号'},
{type:'datetimerange',prop:'creationTime',label:'创建时间'},
],
})
</script>