From a4b3ee325c7354579d495bc74a777e494e5ec38c Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 06 Feb 2026 18:18:44 +0800
Subject: [PATCH] 商品可以价格面议 选择走访时显示输入走访企业名 分会添加活动时要总会审核 分类添加人数限制,添加活动选择了填写人数限制的分类时活动名额下显示该分类人数限制为15 同一个企业30天内只能走访一次,在30天内走访同一个企业时提示该企业已被走访xx天后才可以从新走访

---
 supplier_vue/src/views/product/product/part/spec/many/Table.vue |   24 +++++++++++++++++++++++-
 1 files changed, 23 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..cddc0bc 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,8 +10,11 @@
           批量设置
           <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-input size="small" v-model="batchData.activation_code_num" placeholder="激活码数量"
+                    style="width: 160px;padding-left: 4px;"></el-input>
           <el-button size="small" @click="onSubmitBatchData">应用</el-button>
         </div>
         <!--多规格表格-->
@@ -49,6 +52,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
@@ -70,6 +78,18 @@
                   style="margin-bottom: 0;"
                 >
                   <el-input size="small" prop="product_weight" v-model="scope.row.spec_form.product_weight"></el-input>
+                </el-form-item>
+              </template>
+            </el-table-column>
+            <el-table-column label="激活码数量"  v-if="form.model.is_activation_code==1">
+              <template slot-scope="scope">
+                <el-form-item
+                  label=""
+                  :rules="[{ required: true, message: ' ' }]"
+                  :prop="'model.spec_many.spec_list.' + scope.$index + '.spec_form.activation_code_num'"
+                  style="margin-bottom: 0;"
+                >
+                  <el-input size="small" prop="activation_code_num" v-model="scope.row.spec_form.activation_code_num"></el-input>
                 </el-form-item>
               </template>
             </el-table-column>
@@ -95,7 +115,9 @@
           product_price: '',
           line_price: '',
           stock_num: '',
-          product_weight: ''
+          product_weight: '',
+          settlement_price: 0,
+          activation_code_num: 0,
         },
         /*图片是否打开*/
         isupload: false,

--
Gitblit v1.9.2