From 21ac0f7eee256bb1cb159f402987d0d0fd03ca90 Mon Sep 17 00:00:00 2001
From: mayf <m13160102112@163.com>
Date: 星期三, 09 十月 2024 15:21:52 +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