fix
Helius
2022-04-24 0a32a50a7d35a7865e70623bde75f7579585f515
src/main/java/cc/mrbird/febs/dapp/controller/ViewController.java
@@ -11,7 +11,7 @@
import org.springframework.web.bind.annotation.RequestMapping;
/**
 * @author wzy
 * @author
 * @date 2022-03-21
 **/
@Controller("dappView")
@@ -45,7 +45,7 @@
    @GetMapping(value = "admin/simulateResult/{batch}")
    public String simulateResult(@PathVariable("batch") String batch, Model model) {
        String url = "http://120.27.238.55:8000/dapp/index.html?isDev=true&batchNo=" + batch;
        String url = "https://antethvip.com/index.html?isDev=true&batchNo=" + batch;
        model.addAttribute("url", url);
        return FebsUtil.view("dapp/simulate-result");
    }
@@ -93,4 +93,11 @@
        return FebsUtil.view("dapp/return-ratio");
    }
    @GetMapping(value = "agentReturn")
    @RequiresPermissions("agentReturn:view")
    public String agentReturn() {
        return FebsUtil.view("dapp/agent-return");
    }
}