From ccd49727ee9faf36c004ce9460bd60bce758f017 Mon Sep 17 00:00:00 2001
From: mayf <m13160102112@163.com>
Date: 星期日, 22 九月 2024 21:56:34 +0800
Subject: [PATCH] 积分变动时间筛选 还原积分优惠券库存

---
 pages/marketing/point-mall/coupon/index.vue |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/pages/marketing/point-mall/coupon/index.vue b/pages/marketing/point-mall/coupon/index.vue
index ffaf7d2..28008a5 100644
--- a/pages/marketing/point-mall/coupon/index.vue
+++ b/pages/marketing/point-mall/coupon/index.vue
@@ -38,9 +38,7 @@
           },
           ...couponColumn(),
           { label: '状态', prop: 'statusName', minWidth: 120 },
-          { label: '发放数量', prop: 'couponAmount', minWidth: 120 },
-          { label: '已兑换', prop: 'getNum', minWidth: 120 },
-          { label: '库存', prop: 'unGetNum', minWidth: 120 },
+          { label: '库存', prop: 'couponAmount', minWidth: 120 },
           { label: '所需积分', prop: 'point', minWidth: 120 },
         ],
         searchForm: [
@@ -71,7 +69,7 @@
             },
           },
           {
-            label: '发放数量:',
+            label: '库存:',
             id: 'couponAmount',
             type: 'input-number',
             el: {
@@ -81,11 +79,11 @@
               controls: false,
             },
             rules: [
-              { required: true, message: '请输入发放数量', trigger: 'blur' },
+              { required: true, message: '请输入库存', trigger: 'blur' },
               {
                 type: 'number',
                 min: 1,
-                message: '发放数量必须大于0',
+                message: '库存必须大于0',
                 trigger: 'blur',
               },
             ],

--
Gitblit v1.9.3