Files
zszq-trs/YLErpWeb/Views/TrsAccountManage/Index.cshtml
T
2024-05-09 14:06:26 +08:00

32 lines
1.2 KiB
Plaintext

@{
ViewBag.Title = "做市账户";
ViewBag.Menu = "系统管理-做市账户";
Layout = "~/Views/Shared/_MainLayout.cshtml";
var clientList = ClientDataModel.GetAllTrsClient();//做市报价交易对手方
var pageObj = new
{
canEdit = CurUser.系统管理.做市账户修改,
canDelete = CurUser.系统管理.做市账户删除,
};
}
@section JS{
<script>
const page = @Json.Serialize(pageObj);
</script>
<script src="~/Scripts/app/trs_account_manage/list.js?v=@HtmlUtil.JsVersion"></script>
}
<div id="rateVue">
<div class="searchdiv" >
@Html.ShortInput("AccountName", "账户名称")
@Html.ShortInput("Account", "账户")
@Html.MyAceDropdownInput("ClientId", "客户", clientList,appendEmptyAll:false,multiple:true)
<button class="btn btn-primary" onclick="SearchClick()"><span class="glyphicon glyphicon-search"></span>查询</button>
@if (CurUser.系统管理.做市账户新增)
{
<button class="btn btn-primary" onclick="addNew()">新增</button>
}
</div>
<div style="width:98%">
@Html.Raw(JqGridSimple.OutTable())
</div>
</div>