21 lines
1.6 KiB
Plaintext
21 lines
1.6 KiB
Plaintext
|
|
@model List<clientcashincashout_productLinq>
|
|
@{
|
|
Layout = null;
|
|
}
|
|
@if(Model!=null){
|
|
<text> 质押记录
|
|
-----------------------------------------------------------------------------------------------------------------------------------
|
|
| 质押时间 | 质押状态 | 赎回时间 | 质押品名 | 质押率 | 质押数量 | 盯市价格 | 质押市值 |
|
|
|----------------------------------------------------------------------------------------------------------------------------------</text>
|
|
<text/>
|
|
foreach (clientcashincashout_productLinq mod in Model)
|
|
{
|
|
<text>| @StringHelper.GetFixedStr2(mod.HappenDateString, " 质押时间 ") | @StringHelper.GetFixedStr2(mod.Status, " 质押状态 ") | @StringHelper.GetFixedStr2(mod.BackDateString, " 赎回时间 ") | @StringHelper.GetFixedStr2(mod.VarietyShortName, " 质押品名 ") | @StringHelper.GetFixedStr2(mod.RateString, " 质押率 ") | @StringHelper.GetFixedStr2((mod.ProductAmount ?? 0).ToString(), " 质押数量 ") | @StringHelper.GetFixedStr2((mod.SpotPrice ?? 0).ToString("N2"), " 盯市价格 ") | @StringHelper.GetFixedStr2((mod.ProductTotalPrice ?? 0).ToString("N2"), " 质押市值 ") |</text>
|
|
}
|
|
<text>
|
|
|----------------------------------------------------------------------------------------------------------------------------------
|
|
|共 @StringHelper.GetFixedStr2(Model.Count.ToString(), " ")条
|
|
-----------------------------------------------------------------------------------------------------------------------------------
|
|
</text>;
|
|
} |