37 lines
1004 B
Plaintext
37 lines
1004 B
Plaintext
@{
|
|
ViewBag.Title = "互换交易流水检测";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
};
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script>
|
|
const page = @Json.Serialize(pageObj);
|
|
</script>
|
|
<script src="~/Scripts/app/trade/swapTradeFlowCheckResultList.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
}
|
|
|
|
<div class="searchdiv">
|
|
<div class="first-wrap-gtja">
|
|
@Html.ShortInput("TradeNumber", "交易编号")
|
|
@Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllClient())
|
|
@Html.MyAceDropdownInput("IsSuccess", "检测结果", new List<SelectItem> { new SelectItem { Text = "通过", Value = "true" }, new SelectItem { Text = "不通过", Value = "false" } })
|
|
</div>
|
|
</div>
|
|
<div class="searchdiv">
|
|
<div>
|
|
@MyControls.SearchBtn()
|
|
@MyControls.Btn("开始检测", "checkTradeFlow()")
|
|
</div>
|
|
</div>
|
|
|
|
<div class="table">
|
|
|
|
</div>
|
|
|
|
@Html.Raw(JqGridSimple.OutTable()) |