From cedddf065c7f370f7f3d88c92d601d78f4e99991 Mon Sep 17 00:00:00 2001 From: wxy <14293288+zysysys@user.noreply.gitee.com> Date: Mon, 26 Aug 2024 20:41:40 +0800 Subject: [PATCH] =?UTF-8?q?```feat(money-user):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E4=BD=99=E9=A2=9D=E9=A2=84=E8=AD=A6=E5=8A=9F=E8=83=BD=20TODO?= =?UTF-8?q?=20=E5=BE=85=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在用户资金页面新增余额预警机制,允许用户设置当账户可用余额低于指定阈值时,系统每日通过短信通知,最多连续通知五天。界面包括输入预警阈值和联系号码的表单,以及相关的对话框组件。``` --- src/views/money/user/index.vue | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/views/money/user/index.vue b/src/views/money/user/index.vue index 32f9b2a..443a270 100644 --- a/src/views/money/user/index.vue +++ b/src/views/money/user/index.vue @@ -7,6 +7,32 @@ + + +

余额预警

+ 开启 + + + + 账户可用余额小于该值时,每天短信通知一次(最多连续提醒5天) + + + + + + + + + + + + +
+ +
@@ -25,9 +51,14 @@ export default { data() { return { charts: "", - opinionData: ["155", "400", "900", "800", "300", "900", "270", "684", "165", "0", "300", "150"], // 数据 + dialogFormVisible: false, + formLabelWidth: '120px', + opinionData: ["155", "400", "900", "800", "300", "900", "270","684","165","0","300","150"], // 数据 userBalanceData: { userBalance: '加载中...' + }, + form:{ + } }; },