117 lines
3.6 KiB
Plaintext
117 lines
3.6 KiB
Plaintext
@model IEnumerable<WX.CRM.Model.Entity.QH_CUSTOMER>
|
|
|
|
@{
|
|
Layout=null;
|
|
string useraccount=ViewBag.UserAccount;
|
|
}
|
|
<script type="text/javascript">
|
|
function linkToMore(url) {
|
|
window.parent.parent.ChildAddTab("更多-资金汇总明细", url, "");
|
|
}
|
|
</script>
|
|
<div class="content_div">
|
|
<div>
|
|
<table class="layui-table content_width">
|
|
<tr>
|
|
<td style="text-align:center;font-weight:bold">
|
|
资金汇总明细
|
|
<a href="javascript:linkToMore('/Csvr/CustomerQH/CustomerCapitalList?useraccount=@useraccount')">
|
|
更多
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br />
|
|
<table id="t2" class="layui-table content_width">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
资产账号
|
|
</th>
|
|
<th>
|
|
所属组
|
|
</th>
|
|
@*<th>
|
|
日期
|
|
</th>*@
|
|
<th>
|
|
币种
|
|
</th>
|
|
<th>
|
|
上次结算准备金
|
|
</th>
|
|
<th>
|
|
+入金
|
|
</th>
|
|
<th>
|
|
-出金
|
|
</th>
|
|
<th>
|
|
静态权益
|
|
</th>
|
|
<th>
|
|
平仓盈亏
|
|
</th>
|
|
<th>
|
|
持仓盈亏
|
|
</th>
|
|
<th>
|
|
手续费
|
|
</th>
|
|
<th>
|
|
动态权益
|
|
</th>
|
|
<th>
|
|
占用保证金
|
|
</th>
|
|
<th>
|
|
冻结手续费
|
|
</th>
|
|
<th>
|
|
冻结保证金
|
|
</th>
|
|
<th>
|
|
可用资金
|
|
</th>
|
|
<th>
|
|
可取资金
|
|
</th>
|
|
<th>
|
|
交易所保证金
|
|
</th>
|
|
<th>
|
|
申请费用
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td>@item.USERACCOUNT</td>
|
|
<td>@item.TEAM</td>
|
|
@*<td>@item.RQ.Value.ToString("yyyy-MM-dd")</td>*@
|
|
<td>@item.BZ</td>
|
|
<td>@item.SCJSZBJ</td>
|
|
<td>@item.RJ</td>
|
|
<td>@item.CJ</td>
|
|
<td>@item.JTQY</td>
|
|
<td>@item.PCYK</td>
|
|
<td>@item.CCYK</td>
|
|
<td>@item.SXF</td>
|
|
<td>@item.DTQY</td>
|
|
<td>@item.ZYBZJ</td>
|
|
<td>@item.DJSXF</td>
|
|
<td>@item.DJBZJ</td>
|
|
<td>@item.KYZJ</td>
|
|
<td>@item.KQZJ</td>
|
|
<td>@item.JYSBZJ</td>
|
|
<td>@item.SQFY</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|