From 5dbd5bdfc1a4de43722485b728f7d27f9b369eb9 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期一, 02 三月 2026 15:38:19 +0800
Subject: [PATCH] 经销商管理
---
admin/src/components/business/OperaCouponUsedDetail.vue | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/admin/src/components/business/OperaCouponUsedDetail.vue b/admin/src/components/business/OperaCouponUsedDetail.vue
index b15a70e..570559a 100644
--- a/admin/src/components/business/OperaCouponUsedDetail.vue
+++ b/admin/src/components/business/OperaCouponUsedDetail.vue
@@ -1,12 +1,13 @@
<template>
<GlobalWindow
:title="title"
+ :with-footer="false"
:visible.sync="visible"
@confirm="confirm"
>
<TableLayout :permissions="['business:coupon:query']">
<!-- 鎼滅储琛ㄥ崟 -->
- <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline>
+ <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" >
<el-form-item label="鍏戞崲浜�" prop="member">
<el-input v-model="searchForm.member" placeholder="璇疯緭鍏ユ樀绉�" @keypress.enter.native="search"></el-input>
</el-form-item>
@@ -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