点击触发新的页面并且有两个表格相关联
<el-button type="primary" v-hasPermi="['produce:bbomdetail:add']" plain icon="el-icon-plus" size="mini" @click="handleBOM"
>BOM编号创建</el-button>
<el-dialog title="BOM编号创建" :visible.sync="isShoBOM" width="1500px">
<el-row>
<el-col :span="10">
<el-table :data="bomData" height="600px" >
<el-table-column type="selection" width="50" align="center" />
<el-table-column prop="productCode" label="成品编号" align="center" :show-overflow-tooltip="true" />
<el-table-column prop="productName" label="成品名称" align="center" :show-overflow-tooltip="true" />
<el-table-column prop="versionCode" label="版本编号" align="center" :show-overflow-tooltip="true" />
</el-table>
</el-col>
</el-row>
</el-dialog>
<script>
handleBOM() {
this.isShoBOM = true
},
</script>