From e1e2fe5710a5b5cd9c19bd3aa99c998a1a613ca8 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Sat, 17 Jan 2026 17:58:01 +0800
Subject: [PATCH] 团购组件增加筛选

---
 supplier_vue/src/views/product/product/part/spec/many/Table.vue |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/supplier_vue/src/views/product/product/part/spec/many/Table.vue b/supplier_vue/src/views/product/product/part/spec/many/Table.vue
index 23f4f16..4052715 100644
--- a/supplier_vue/src/views/product/product/part/spec/many/Table.vue
+++ b/supplier_vue/src/views/product/product/part/spec/many/Table.vue
@@ -10,6 +10,7 @@
           批量设置
           <el-input size="small" v-model="batchData.product_price" placeholder="销售价" style="width: 160px;padding-left: 4px;"></el-input>
           <el-input size="small" v-model="batchData.line_price" placeholder="划线价" style="width: 160px;padding-left: 4px;"></el-input>
+          <el-input size="small" v-model="batchData.settlement_price" placeholder="结算价" style="width: 160px;padding-left: 4px;"></el-input>
           <el-input size="small" v-model="batchData.stock_num" placeholder="库存" style="width: 160px;padding-left: 4px;"></el-input>
           <el-input size="small" v-model="batchData.product_weight" placeholder="重量" style="width: 160px;padding-left: 4px;"></el-input>
           <el-button size="small" @click="onSubmitBatchData">应用</el-button>
@@ -47,6 +48,11 @@
             <el-table-column label="划线价">
               <template slot-scope="scope">
                 <el-form-item label="" style="margin-bottom: 0;"><el-input size="small" prop="line_price" v-model="scope.row.spec_form.line_price"></el-input></el-form-item>
+              </template>
+            </el-table-column>
+            <el-table-column label="结算价">
+              <template slot-scope="scope">
+                <el-form-item label="" style="margin-bottom: 0;"><el-input size="small" prop="settlement_price" v-model="scope.row.spec_form.settlement_price"></el-input></el-form-item>
               </template>
             </el-table-column>
             <el-table-column label="库存">
@@ -95,7 +101,8 @@
           product_price: '',
           line_price: '',
           stock_num: '',
-          product_weight: ''
+          product_weight: '',
+          settlement_price: 0,
         },
         /*图片是否打开*/
         isupload: false,

--
Gitblit v1.9.2