From a004dc989f9d964cc357e558e451307c768f4d13 Mon Sep 17 00:00:00 2001 From: liaozetao <1107136310@qq.com> Date: Thu, 21 Mar 2024 11:55:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=8D=E9=99=90=E5=88=B6?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/lucky/LuckyGiftRangeConfigView.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/lucky/LuckyGiftRangeConfigView.vue b/src/views/lucky/LuckyGiftRangeConfigView.vue index 4a32a32..d2711a4 100644 --- a/src/views/lucky/LuckyGiftRangeConfigView.vue +++ b/src/views/lucky/LuckyGiftRangeConfigView.vue @@ -144,6 +144,9 @@ export default { $this.disableTableInfo(); $this.renderTableInfo(); }); + $("#addCancel").click(function () { + $("#addModal").modal("hide"); + }); }); }, add() { @@ -224,13 +227,13 @@ export default { ); } tds.push( - `` + `` ); } else { tds.push( - `${item.minValue}` + `${item.minValue}` ); - tds.push(`${item.maxValue}`); + tds.push(`${(!item.maxValue || item.maxValue == 0) ? '不限制' : item.maxValue}`); } let row = `${tds.join()}`; $groupTable.append(row);