From 28db820caf0ed90f4326d29cb0fa7a19cba92775 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期五, 27 二月 2026 16:33:03 +0800
Subject: [PATCH] 经销商管理

---
 admin/src/components/business/OperaCouponUsedDetail.vue |   18 ++++++++++--------
 1 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/admin/src/components/business/OperaCouponUsedDetail.vue b/admin/src/components/business/OperaCouponUsedDetail.vue
index b15a70e..549fa26 100644
--- a/admin/src/components/business/OperaCouponUsedDetail.vue
+++ b/admin/src/components/business/OperaCouponUsedDetail.vue
@@ -1,6 +1,7 @@
 <template>
   <GlobalWindow
     :title="title"
+    :with-footer="false"
     :visible.sync="visible"
     @confirm="confirm"
   >
@@ -28,7 +29,7 @@
       </el-form>
       <!-- 琛ㄦ牸鍜屽垎椤� -->
       <template v-slot:table-wrap>
-        
+
         <el-table
           v-loading="isWorking.search"
           :data="tableData.list"
@@ -49,11 +50,11 @@
               {{ row.type==0?'棰嗗彇':'鍏戞崲' }}
             </template>
           </el-table-column>
-          <el-table-column prop="num" label="鍜栬眴鏁伴噺" align="center" min-width="100px">
+<!--          <el-table-column prop="num" label="鏁伴噺" align="center" min-width="100px">
             <template slot-scope="{row}">
               {{ row.num || '-' }}
             </template>
-          </el-table-column>
+          </el-table-column>-->
           <el-table-column label="鐘舵��" align="center" min-width="100px">
             <template slot-scope="{row}">
               {{ row.status==0 ? '鏈娇鐢�' : row.status==1 ? '宸蹭娇鐢�' : '宸茶繃鏈�' }}
@@ -83,18 +84,19 @@
   extends: BaseTable,
   components: { GlobalWindow, TableLayout, Pagination },
   data () {
-    
+
     return {
       visible: false,
       title: '',
       getDate: [],
       // 琛ㄥ崟鏁版嵁
       searchForm: {
-        id: null,
+        couponId: null,
         member: '',
+        methodList:[0,1],
         status: '',
       },
-      
+
     }
   },
   created () {
@@ -109,10 +111,10 @@
       this.visible = true
       this.$nextTick(() => {
         this.$refs.searchForm.resetFields()
-        this.searchForm.id = target
+        this.searchForm.couponId = target
         this.search()
       })
-      
+
     },
     handlePageChange (pageIndex) {
       // debugger

--
Gitblit v1.9.3