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] 团购组件增加筛选
---
shop_vue/src/views/product/product/part/spec/many/Table.vue | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/shop_vue/src/views/product/product/part/spec/many/Table.vue b/shop_vue/src/views/product/product/part/spec/many/Table.vue
index 23f4f16..9bd33be 100644
--- a/shop_vue/src/views/product/product/part/spec/many/Table.vue
+++ b/shop_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>
@@ -49,6 +50,11 @@
<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="库存">
<template slot-scope="scope">
<el-form-item
--
Gitblit v1.9.2