56 lines
1.8 KiB
Plaintext
56 lines
1.8 KiB
Plaintext
@using YLErp.Web.Models.JsModels;
|
|
@using YLErp.Modules.SwapModule.Dto;
|
|
@model TrsAccountManageDto
|
|
@{
|
|
ViewBag.Title = "做市账户 | 详情";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
var clientNames = Model.TrsAccountManageDetails.Select(s => s.client_name).ToList();
|
|
string clientName = clientNames.Count == 0 ? "--" : string.Join(",", clientNames);
|
|
}
|
|
@section JS{
|
|
<script src="~/Scripts/app/trs_account_manage/view.js?v=@HtmlUtil.JsVersion"></script>
|
|
}
|
|
<div class="row no-gutters">
|
|
<div class="yc-panel" style="width:400px">
|
|
@if (CurUser.系统管理.做市账户修改)
|
|
{
|
|
@MyControls.Btn("修改", string.Format("editAccount('{0}')", Model.EncryptId))
|
|
}
|
|
@if (CurUser.系统管理.做市账户删除)
|
|
{
|
|
<div style="display:inline-block;float:right;">
|
|
@MyControls.Btn("删除", string.Format("deleteAccount('{0}')", Model.EncryptId))
|
|
</div>
|
|
}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="row no-gutters">
|
|
<div class="yc-panel" style="width:400px">
|
|
<table class="table table-bordered">
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td>trader id</td>
|
|
<td>@Model.trader_id</td>
|
|
</tr>
|
|
<tr>
|
|
<td>账户</td>
|
|
<td>@Model.account</td>
|
|
</tr>
|
|
<tr>
|
|
<td>账户名称</td>
|
|
<td>@Model.account_name</td>
|
|
</tr>
|
|
<tr>
|
|
<td>客户</td>
|
|
<td>@clientName</td>
|
|
</tr>
|
|
<tr>
|
|
<td>备注</td>
|
|
<td>@Model.remark</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |