yudao-dev/src/views/extend/processFlowView/components/ProcessBomList.vue

36 lines
565 B
Vue
Raw Normal View History

2023-10-20 16:03:40 +08:00
<!--
filename: ProcessBomList.vue
author: liubin
date: 2023-10-20 15:00:58
description:
-->
<template>
<section class="process-bom">
<SearchBar :formConfigs="searchBarFormConfig" ref="search-bar" />
</section>
</template>
<script>
export default {
name: 'ProcessBom',
components: {},
props: {},
data() {
return {
searchBarFormConfig: [{ label: '工序下设备' }],
};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.process-bom {
padding: 12px 20px;
background: #fff;
border-radius: 8px;
}
</style>