52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
@{
|
|
ViewBag.Title = "资金审批";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var derictionList = new List<string>(){"出金"};
|
|
var list = CurUser.Roles.Select(s => s.Id).ToList();
|
|
var pageObj = new
|
|
{
|
|
rolesStr = string.Join(",", list)
|
|
};
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
.tooltip-inner {
|
|
max-width: none !important;
|
|
}
|
|
|
|
.ui-jqgrid tr.jqgrow td {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
#listGrid tr [aria-describedby="listGrid_Comments"] {
|
|
overflow: hidden !important;
|
|
text-overflow: ellipsis !important;
|
|
white-space: nowrap !important;
|
|
}
|
|
|
|
.trade-wrap {
|
|
margin-left: 68px;
|
|
}
|
|
|
|
.time-wrap {
|
|
margin-left: 205px;
|
|
}
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script type="text/javascript">
|
|
const page = @Json.Serialize(pageObj);
|
|
var roles = page.rolesStr;
|
|
</script>
|
|
<script src="~/Scripts/app/client/entryexitApproval.js?v=@HtmlUtil.JsVersion"></script>
|
|
}
|
|
<div class="searchdiv">
|
|
@Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllOpenClient())
|
|
@Html.ShortInput("Number", "资金编号")
|
|
@Html.MyAceDropdownInput2("DirectionType", "方向类型", derictionList,defaultvalue:derictionList.First(),appendEmptyAll:false)
|
|
@Html.SearchDateRange("HappenDate", "发生时间")
|
|
@Html.SearchDateRange("OptDate", "操作时间")
|
|
@Html.MyAceDropdownInput("OptIds", "操作者", GlobalData.GetAllUser())
|
|
@MyControls.SearchBtn()
|
|
</div>
|
|
@Html.Raw(JqGridSimple.OutTable()) |