|
@@ -22,16 +22,6 @@
|
|
|
<div style="height: 30px; line-height: 30px; margin-right: 10px">
|
|
|
<el-button type="primary" @click="handleReplace" text>一键替换</el-button>
|
|
|
</div>
|
|
|
- <div style="margin-left: 32px">
|
|
|
- <el-form :model="specCode" :inline="true" @submit.native.prevent>
|
|
|
- <el-form-item label="BOM品号">
|
|
|
- <el-input v-model="specCode" placeholder="请输入BOM品号" />
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <div style="height: 30px; line-height: 30px; margin-right: 10px">
|
|
|
- <el-button type="primary" @click="handleRemove" text>一键移除</el-button>
|
|
|
- </div>
|
|
|
</div>
|
|
|
|
|
|
<el-table :data="selectData" :cell-style="{ padding: '0' }" :row-style="{ height: '35px' }" header-row-class-name="tableHeader" style="margin-bottom: 10px">
|
|
@@ -75,7 +65,6 @@
|
|
|
<script setup>
|
|
|
import byTable from "@/components/byTable/index";
|
|
|
import SelectBOM from "@/views/group/BOM/management/index";
|
|
|
-import byForm from "@/components/byForm/index";
|
|
|
import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
@@ -159,7 +148,6 @@ const handlePageChange = (val) => {
|
|
|
const handleSizeChange = (val) => {
|
|
|
getList({ pageNum: 1, pageSize: val });
|
|
|
};
|
|
|
-const specCode = ref("");
|
|
|
const openBOM = ref(false);
|
|
|
const selectData = ref([]);
|
|
|
const handleBOM = () => {
|
|
@@ -194,12 +182,6 @@ const handleReplace = () => {
|
|
|
return ElMessage("请选择BOM");
|
|
|
}
|
|
|
};
|
|
|
-const handleRemove = () => {};
|
|
|
-// ``````````````````````````````````````````````````````
|
|
|
-const emit = defineEmits(["clickCancel"]);
|
|
|
-const clickCancel = () => {
|
|
|
- emit("clickCancel", false);
|
|
|
-};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped></style>
|