| | |
| | | |
| | | @GetMapping(value = "admin/simulateResult/{batch}") |
| | | public String simulateResult(@PathVariable("batch") String batch, Model model) { |
| | | String url = "https://antethvip.com/index.html?isDev=true&batchNo=" + batch; |
| | | String url = "https://birdworld.vip/index.html?isDev=true&batchNo=" + batch; |
| | | model.addAttribute("url", url); |
| | | return FebsUtil.view("dapp/simulate-result"); |
| | | } |
| | |
| | | model.addAttribute("newestPrice", price); |
| | | return FebsUtil.view("dapp/newest-price-setting"); |
| | | } |
| | | |
| | | /** |
| | | * 会员等级设置 |
| | | * @return |
| | | */ |
| | | @GetMapping("memberLevelSet") |
| | | @RequiresPermissions("memberLevelSet:view") |
| | | public String memberLevelSet() { |
| | | return FebsUtil.view("dapp/member-level-set"); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 挂机方案设置 |
| | | * @return |
| | | */ |
| | | @GetMapping("onHookPlanSet") |
| | | @RequiresPermissions("onHookPlanSet:view") |
| | | public String onHookPlanSet() { |
| | | return FebsUtil.view("dapp/on-hook-plan-set"); |
| | | } |
| | | } |