From 1e4f8276eb86dde67135126cbb9bae19bb845823 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期一, 02 三月 2026 12:09:57 +0800
Subject: [PATCH] 经销商管理

---
 admin/src/components/business/OperaCouponGoodsWindow.vue |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/admin/src/components/business/OperaCouponGoodsWindow.vue b/admin/src/components/business/OperaCouponGoodsWindow.vue
index a4301a5..fe62b30 100644
--- a/admin/src/components/business/OperaCouponGoodsWindow.vue
+++ b/admin/src/components/business/OperaCouponGoodsWindow.vue
@@ -2,12 +2,13 @@
   <GlobalWindow
     :title="title"
     width="100%"
+    :with-footer="false"
     :visible.sync="visible"
     @confirm="confirm"
   >
     <TableLayout>
       <!-- 鎼滅储琛ㄥ崟 -->
-      <el-form ref="searchForm" slot="search-form" id="curSearchForm" :model="searchForm" label-width="100px" style="display: block;" >
+      <el-form ref="searchForm" slot="search-form" id="curSearchForm" :model="searchForm" label-width="100px"  inline >
         <el-form-item label="" prop="name" label-width="5px" style="display: inline-block;margin-right: 30px;">
           <el-input v-model="searchForm.name" style="width: 150px;" placeholder="鍟嗗搧鍚嶇О" clearable @keypress.enter.native="search"></el-input>
         </el-form-item>
@@ -24,6 +25,7 @@
         <section>
           <el-button type="primary" @click="search">鎼滅储</el-button>
           <el-button @click="reset">閲嶇疆</el-button>
+          <el-button type="primary" style="margin-left: 30px;font-weight: bold"  @click="confirm">纭鍟嗗搧閰嶇疆</el-button>
         </section>
       </el-form>
       <!-- 琛ㄦ牸鍜屽垎椤� -->
@@ -102,12 +104,15 @@
     return {
       title: '',
       visible: false,
+      selectGoods:[],
       // 鎼滅储
       searchForm: {
         id: '',
         bindShopId: ''
       },
-      shops: []
+      shops: [],
+      brands:[],
+      labels:[]
     }
   },
   created () {
@@ -246,9 +251,15 @@
   }
 }
 </script>
-<style scoped>
+<style lang="scss" scoped>
+::v-deep .el-select {
+  width: 100%;
+  .el-input__inner {
+    width: 100%;
+  }
+}
 .table-pagination{
   position: fixed !important;
-  bottom: 50px;
+  bottom: 10px;
 }
 </style>

--
Gitblit v1.9.3