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.
28 lines
733 B
28 lines
733 B
2 months ago
|
<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
|
||
|
},
|
||
|
searchOptions:[
|
||
|
{type:'input',prop:'deviceCode',label:'工艺装备编码'}
|
||
|
],
|
||
|
rightOperation:'apiUpdate,apiDelete',
|
||
|
})
|
||
|
</script>
|