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