From 92b44cd6a1e4ff5ea976f6416fb97fbe4fe99209 Mon Sep 17 00:00:00 2001 From: mayf <m13160102112@163.com> Date: 星期一, 30 九月 2024 15:37:45 +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