@model ScenarioConfigV2
@{
ViewBag.Title = "情景分析配置|查看";
Layout = "~/Views/Shared/_InfoLayout.cshtml";
var special = Model.ParseSepcial();
}
@section JS{
}
| 交易员 | @(Model.UserName) |
| 情景名称 | @(Model.ConfigName) |
| 横坐标类型 | @(Model.xType) |
| 横坐标变动率 | @(Model.xRates) |
| 纵坐标类型 | @(Model.yType) |
| 纵坐标变动率 | @(Model.yRates) |
| 更新时间 | @(Model.OptDate) |
@*@if (special != null && special.HasItem())
{
标的价格特殊配置
if (special.VarityList != null && special.VarityList.Any())
{
| 标的品种 |
偏移量 |
@foreach (var item in special.VarityList)
{
| @item.Name |
@(item.Rate?.ToString("P2")) |
}
}
if (special.UnderlyingList != null && special.UnderlyingList.Any())
{
| 标的代码 |
偏移量 |
@foreach (var item in special.UnderlyingList)
{
| @item.Name |
@(item.Rate?.ToString("P2")) |
}
}
}*@