36 lines
565 B
Vue
36 lines
565 B
Vue
|
<!--
|
||
|
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>
|