@using YLErp.Web.Models.JsModels; @model SwapFloatRate @{ ViewBag.Title = "浮动利率 | 详情"; Layout = "~/Views/Shared/_InfoLayout.cshtml"; string underLyingCode = string.IsNullOrEmpty(Model.UnderlyingCode) ? "--" : Model.UnderlyingCode; string baseUnderLyingCode = string.IsNullOrEmpty(Model.BaseUnderlyingCode) ? "--" : Model.BaseUnderlyingCode; } @section JS{ }
@if (CurUser.基础参数管理.浮动利率编辑) { @MyControls.Btn("修改", string.Format("editRate('{0}')", Model.EncryptId)) } @MyControls.Btn("操作历史", string.Format("history('{0}')", Model.EncryptId)) @if (CurUser.基础参数管理.浮动利率删除) {
@MyControls.Btn("删除", string.Format("deleteRate('{0}')", Model.EncryptId))
}
@if(Model.RateMode==(int)ConstSwapFloatRateEnum.Special){ }
客户名称 @Model.ClientName
债券代码 @underLyingCode
生效起始日 @Model.StartDate.OtcFormatDate()
生效终止日 @Model.EndDate.OtcFormatDate()
是否年化 @(Model.is_annualized == true ? "是" : "否")
计息方式 @Model.interest_type_str
重置频率(天) @Model.interest_rest_days
利率准则 @Model.interest_rule_str
基准利率 @baseUnderLyingCode
利差(多头加点) @Model.LongPricePoint.OtcFormatMoney(true)
利差(空头减点) @Model.ShortPricePoint.OtcFormatMoney(true)