Files
zszq-trs/YLErpWeb/Controllers/V2Controller.cs
T
2024-05-09 14:06:26 +08:00

35 lines
866 B
C#

namespace YLErp.Web.Controllers
{
/// <summary>
/// V2版UI
/// </summary>
public class V2Controller : Controller
{
#if DEBUG
const string BaseUrl = "http://localhost:3000";
#else
const string BaseUrl = "";
#endif
public IConfiguration _configuration;
public V2Controller(IConfiguration configuration)
{
_configuration = configuration;
}
/// <summary>
/// 专业版雪球定价
/// </summary>
[MyAuthorize("报价管理-结构化交易定价")]
public ActionResult Autocallable()
{
ViewBag.Title = "自动赎回结构";
ViewBag.Menu = "报价管理-自动赎回结构";
ViewBag.targetUrl = BaseUrl + "/otc_ui/BidManagement/auto_redemption_struc";
return View("Index");
}
}
}