From ff76ba9c9c56aa2dd1c6a96d5d6365fbb3db1fad Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期六, 03 五月 2025 19:12:04 +0800 Subject: [PATCH] feat: 新增支付记录前端展示 --- ruoyi-ui/src/views/system/clientApp/index.vue | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ruoyi-ui/src/views/system/clientApp/index.vue b/ruoyi-ui/src/views/system/clientApp/index.vue index 31ef400..fbb651e 100644 --- a/ruoyi-ui/src/views/system/clientApp/index.vue +++ b/ruoyi-ui/src/views/system/clientApp/index.vue @@ -309,6 +309,14 @@ submitForm() { this.$refs["form"].validate(valid => { if (valid) { + // 澶勭悊鏃ユ湡鏍煎紡 + if (this.form.validStartTime) { + this.form.validStartTime = this.parseTime(this.form.validStartTime, '{y}-{m}-{d} {h}:{i}:{s}'); + } + if (this.form.validEndTime) { + this.form.validEndTime = this.parseTime(this.form.validEndTime, '{y}-{m}-{d} {h}:{i}:{s}'); + } + if (this.form.appId != null) { updateClientApp(this.form).then(response => { this.$modal.msgSuccess("淇敼鎴愬姛"); -- Gitblit v1.9.1