TG.WXCRM.V4/WEB/Views/Csvr/CustomerQH/CustomerDiscGoldDetailUC.cs...

77 lines
2.1 KiB
Plaintext

@model IEnumerable<WX.CRM.Model.Entity.QH_DISCREPANCYGOLD>
@{
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">
出入金明细&nbsp;&nbsp;
<a href="javascript:linkToMore('/Csvr/CustomerQH/CustomerDiscGoldList?useraccount=@useraccount')">
更多
</a>
</td>
</tr>
</table>
<br />
<table 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>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>@item.TEAM</td>
<td>@item.USERACCOUNT</td>
<td>@item.ACCOUNTNAME</td>
<td>@item.BZ</td>
<td>@item.CRJLX</td>
<td>@item.JE</td>
<td>@item.ZYZJ</td>
<td>@item.BJ</td>
<td>@item.RQ.Value.ToString("yyyy-MM-dd HH:mm")</td>
<td>@item.CZ</td>
</tr>
}
</tbody>
</table>
</div>