101 lines
3.7 KiB
Plaintext
101 lines
3.7 KiB
Plaintext
@model IEnumerable<WX.CRM.Model.Entity.QH_TRANSACTIONDETAIL_CACHE>
|
|
@{
|
|
Layout = null;
|
|
string useraccount = ViewBag.UserAccount;
|
|
}
|
|
<script type="text/javascript">
|
|
function linkToMore(url) {
|
|
window.parent.parent.ChildAddTab("更多-成交记录明细", url, "");
|
|
}
|
|
</script>
|
|
|
|
<div class="content_div">
|
|
<table class="layui-table content_width">
|
|
<tr>
|
|
<td style="text-align:center;font-weight:bold">
|
|
成交记录明细
|
|
<a href="javascript:linkToMore('/Csvr/CustomerQH/CustomerTransactionList?useraccount=@useraccount')">
|
|
更多
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br />
|
|
<table class="layui-table content_width">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: center;">
|
|
所属组
|
|
</th>
|
|
<th style="text-align: center;">
|
|
交易所
|
|
</th>
|
|
<th style="text-align: center;">
|
|
账户
|
|
</th>
|
|
<th style="text-align: center;">
|
|
账户名
|
|
</th>
|
|
<th style="text-align: center;">
|
|
品种
|
|
</th>
|
|
<th style="text-align: center;">
|
|
合约代码
|
|
</th>
|
|
<th style="text-align: center;">
|
|
买卖
|
|
</th>
|
|
<th style="text-align: center;">
|
|
开平
|
|
</th>
|
|
<th style="text-align: center;">
|
|
成交编号
|
|
</th>
|
|
<th style="text-align: center;">
|
|
成交价格
|
|
</th>
|
|
<th style="text-align: center;">
|
|
成交日期
|
|
</th>
|
|
<th style="text-align: center;">
|
|
成交数量
|
|
</th>
|
|
<th style="text-align: center;">
|
|
报单编号
|
|
</th>
|
|
<th style="text-align: center;">
|
|
投保
|
|
</th>
|
|
<th style="text-align: center;">
|
|
账户手续费
|
|
</th>
|
|
<th style="text-align: center;">
|
|
交易所手续费
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td style="text-align: center;">@item.TEAM</td>
|
|
<td style="text-align: center;">@item.EXCHANGE</td>
|
|
<td style="text-align: center;">@item.USERACCOUNT</td>
|
|
<td style="text-align: center;">@item.ACCOUNTNAME</td>
|
|
<td style="text-align: center;">@item.PRODUCTNAME</td>
|
|
<td style="text-align: center;">@item.CONTRACTCODE</td>
|
|
<td style="text-align: center;">@item.MM</td>
|
|
<td style="text-align: center;">@item.KP</td>
|
|
<td style="text-align: center;">@item.CJBH</td>
|
|
<td style="text-align: center;">@item.CJJG</td>
|
|
<td style="text-align: center;">@item.CJRQ.Value.ToShortDateString()</td>
|
|
<td style="text-align: center;">@item.CJSL</td>
|
|
<td style="text-align: center;">@item.BDBH</td>
|
|
<td style="text-align: center;">@item.TB</td>
|
|
<td style="text-align: center;">@item.ZHSXF</td>
|
|
<td style="text-align: center;">@item.JYSSXF</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div> |