Helius
2022-07-19 46236454fdc29f1786fd8876438bf38e651037e6
src/main/java/cc/mrbird/febs/dapp/controller/ViewController.java
@@ -52,7 +52,7 @@
    @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");
    }
@@ -115,4 +115,18 @@
        model.addAttribute("newestPrice", price);
        return FebsUtil.view("dapp/newest-price-setting");
    }
    @GetMapping("fundFlow")
    @RequiresPermissions("fund:flow:view")
    public String fundFlow() {
        return FebsUtil.view("dapp/money-fund-flow");
    }
    @GetMapping("idoAchieve")
    @RequiresPermissions("idoAchieve:view")
    public String idoAchieve() {
        return FebsUtil.view("dapp/member-ido-achieve");
    }
}