From 9ea5ff67655241271bdf04bb50ca3a8d60c4e22a Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期二, 11 八月 2026 15:07:02 +0800
Subject: [PATCH] fix: 用河南鹤壁代码覆盖山西长治
---
src/views/productionManagement/productStructure/index.vue | 42 ------------------------------------------
1 files changed, 0 insertions(+), 42 deletions(-)
diff --git a/src/views/productionManagement/productStructure/index.vue b/src/views/productionManagement/productStructure/index.vue
index a70631d..e05ed3c 100644
--- a/src/views/productionManagement/productStructure/index.vue
+++ b/src/views/productionManagement/productStructure/index.vue
@@ -1,30 +1,6 @@
<template>
<div class="app-container">
<div class="table_list">
- <el-form :inline="true" :model="queryParams" class="search-bar" @submit.prevent>
- <el-form-item label="浜у搧鍚嶇О">
- <el-input
- v-model="queryParams.productName"
- placeholder="璇疯緭鍏ヤ骇鍝佸悕绉�"
- clearable
- style="width: 220px"
- @keyup.enter="handleQuery"
- />
- </el-form-item>
- <el-form-item label="瑙勬牸鍨嬪彿">
- <el-input
- v-model="queryParams.productModelName"
- placeholder="璇疯緭鍏ヨ鏍煎瀷鍙�"
- clearable
- style="width: 220px"
- @keyup.enter="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="handleQuery">鏌ヨ</el-button>
- <el-button @click="resetQuery">閲嶇疆</el-button>
- </el-form-item>
- </el-form>
<div style="text-align: right; margin-bottom: 10px;">
<el-button type="primary"
@click="handleAdd">鏂板</el-button>
@@ -157,7 +133,6 @@
dataType: "slot",
slot: "detail",
minWidth: 140,
- align: 'center'
},
{
label: "浜у搧鍚嶇О",
@@ -222,10 +197,6 @@
const operationType = ref("add"); // add | edit
const formRef = ref(null);
const showProductSelectDialog = ref(false);
- const queryParams = reactive({
- productName: "",
- productModelName: "",
- });
// BOM瀵煎叆鍙傛暟
const upload = reactive({
@@ -278,25 +249,12 @@
getList();
};
- const handleQuery = () => {
- page.current = 1;
- getList();
- };
-
- const resetQuery = () => {
- queryParams.productName = "";
- queryParams.productModelName = "";
- handleQuery();
- };
-
// 鏌ヨ鍒楄〃
const getList = () => {
tableLoading.value = true;
listPage({
current: page.current,
size: page.size,
- productName: queryParams.productName || undefined,
- productModelName: queryParams.productModelName || undefined,
})
.then(res => {
const records = res?.data?.records || [];
--
Gitblit v1.9.3