From 00a4e3cab6b4d038b2b5fbb45d816b57481bbe0f Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Fri, 17 Jan 2025 15:29:23 +0800 Subject: [PATCH] refactor(mall): 修改会员密码重置功能和界面 --- src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java index ff3fdea..93e3249 100644 --- a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java +++ b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java @@ -99,4 +99,29 @@ model.addAttribute("indexVideoSet", adminIndexVideoDto); return FebsUtil.view("modules/system/indexVideo"); } + + + + @GetMapping("faPiao") + @RequiresPermissions("faPiao:update") + public String faPiao(Model model) { + FaPiaoDto faPiaoDto = new FaPiaoDto(); + DataDictionaryCustom dic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(DataDictionaryEnum.FP_CALLBACK_URL.getType(), + DataDictionaryEnum.FP_CALLBACK_URL.getCode()); + if (dic != null) { + faPiaoDto.setCallbackUrl(dic.getValue()); + } + model.addAttribute("faPiaoDto", faPiaoDto); + return FebsUtil.view("modules/system/faPiao"); + } + + @GetMapping("vipCenterSetting") + public String vipCenterSetting() { + return FebsUtil.view("modules/system/vipCenterSetting"); + } + + @GetMapping("kefu") + public String kefu() { + return FebsUtil.view("modules/system/kefu"); + } } -- Gitblit v1.9.1