@model calendar
@{
ViewBag.Title = "日历 | 编辑";
Layout = "~/Views/Shared/_InfoLayout.cshtml";
}
@section CSS{
}
@section JS
{
}
@using (Html.BeginForm("calendarEdit", "calendar", FormMethod.Post, new { id = "calendarEditForm" }))
{
假日
带权重假日
@if (Model != null)
{
@MyControls.Btn("删除", "deletecalendar('" + Model.EncryptId + "');")
}
@MyControls.Btn("保存", "save_yearcalendar();")
@MyControls.Btn("关闭", "closecalendarWindow()")
}