From 2f34848f649b7d29f7697f8fe13b5e93c543c19a Mon Sep 17 00:00:00 2001 From: Hentua <wangdoubleone@gmail.com> Date: Mon, 12 Jun 2023 22:01:26 +0800 Subject: [PATCH] 增加每日提现次数 --- src/main/resources/templates/febs/views/modules/system/cashOutSetting.html | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/system/cashOutSetting.html b/src/main/resources/templates/febs/views/modules/system/cashOutSetting.html index d9725df..5015e39 100644 --- a/src/main/resources/templates/febs/views/modules/system/cashOutSetting.html +++ b/src/main/resources/templates/febs/views/modules/system/cashOutSetting.html @@ -19,6 +19,13 @@ </div> </div> <div class="layui-form-item"> + <label class="layui-form-label febs-form-item-require">每日提现次数:</label> + <div class="layui-input-block"> + <input type="text" name="dailyWithdrawlCnt" data-th-id="${cashout.dailyWithdrawlCnt}" + lay-verify="required|integer" autocomplete="off" class="layui-input" > + </div> + </div> + <div class="layui-form-item"> <label class="layui-form-label febs-form-item-require">每次提现手续费:</label> <div class="layui-input-block"> <input type="text" name="serviceFee" data-th-id="${cashout.serviceFee}" @@ -92,7 +99,8 @@ "allCashOut": cashout.allCashOut, "serviceFee": cashout.serviceFee, "insideFee": cashout.insideFee, - "workingDays": cashout.workingDays + "workingDays": cashout.workingDays, + "dailyWithdrawlCnt": cashout.dailyWithdrawlCnt }); } -- Gitblit v1.9.1