38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
@model List<YLErp.Modules.ClientModule.ExpireWarning>
|
|
@{
|
|
ViewBag.Title = "客户信息";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
ExpireDate = valuedateBLL.ValueDate,
|
|
DueDate = valuedateBLL.ValueDate.AddMonths(3),
|
|
};
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
.buttonedit { border: 1px solid gray; background-color: #fff !important; color: gray !important; min-width: 50px; height: 20px; border-radius: 0.25rem; margin: 0 0.5rem 0 0.5rem; }
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script src="~/front/calendar?v=@(HtmlUtil.JsVersion)"></script>
|
|
<script src="~/Statics/libs/datetime/flatpickr/flatpickr.min.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
<script src="~/Statics/libs/datetime/flatpickr/vue-flatpickr.min.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
<script src="~/scripts/app/client/clientexpirewarninglist.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
<script type="text/javascript">
|
|
const page = @Json.Serialize(pageObj);
|
|
</script>
|
|
}
|
|
|
|
<body style="background-color:white">
|
|
<div id="statue">
|
|
</div>
|
|
<div class="searchdiv" style="border:0px;box-shadow:none;margin:0rem 0rem 0rem 1rem;">
|
|
<span style="padding:5px;">筛选条件:</span>
|
|
@Html.ShortInput("Number", "客户编号")
|
|
@Html.ShortInput("Name", "客户名称")
|
|
@Html.SearchDateRange("ExpireDate", "到期日期")
|
|
@MyControls.SearchBtn()
|
|
</div>
|
|
@Html.Raw(JqGridSimple.OutTable())
|
|
</body>
|