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.
30 lines
826 B
30 lines
826 B
<template>
|
|
<tablePage
|
|
:columnWidth="150"
|
|
:apiName="state.apiName"
|
|
:searchOptions="state.searchOptions"
|
|
:searchFilter="state.searchFilter"
|
|
:rightOperation="state.rightOperation"
|
|
:searchButtons="['search','create','import','export']"
|
|
></tablePage>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 工艺装备
|
|
defineOptions({ name: 'supplierProProcessEquipment' })
|
|
import { reactive, ref, onMounted } from 'vue'
|
|
import tablePage from '@/components/tablePage/index.vue'
|
|
|
|
const state = reactive({
|
|
apiName:'cherysupplierproprocessequipment',
|
|
searchFilter: {
|
|
deviceCode: null,
|
|
creationTime:null
|
|
},
|
|
searchOptions:[
|
|
{type:'input',prop:'deviceCode',label:'工艺装备编码'},
|
|
{type:'datetimerange',prop:'creationTime',label:'创建时间'},
|
|
],
|
|
rightOperation:'apiUpdate,apiDelete',
|
|
})
|
|
</script>
|