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.
23 lines
542 B
23 lines
542 B
<template>
|
|
<tablePage
|
|
:apiName="state.apiName"
|
|
:searchOptions="state.searchOptions"
|
|
:searchFilter="state.searchFilter"
|
|
></tablePage>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineOptions({ name: 'supplierProTschedul' })
|
|
import { reactive, ref, onMounted } from 'vue'
|
|
import tablePage from '@/components/tablePage/index.vue'
|
|
|
|
const state = reactive({
|
|
apiName:'cherysupplierprotschedul',
|
|
searchFilter: {
|
|
productionLineId: null
|
|
},
|
|
searchOptions:[
|
|
{type:'input',prop:'productionLineId',label:'产线代码'}
|
|
],
|
|
})
|
|
</script>
|