初始化CRICS

This commit is contained in:
2025-12-11 09:17:16 +08:00
commit 83247ec0a2
2735 changed files with 787765 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Domain.Group>" %>
<form class="easyui-form form" method="post" data-options="novalidate:true">
<input type="hidden" name="ID" value="<%=Model.ID %>" />
<input type="hidden" name="ParentID" value="<%=(Model.Parent != null) ? Model.Parent.ID : 0 %>" />
<table style="margin: 20px auto;" cellpadding="3">
<tr>
<td class="align-right"><%: Html.Language("Name")%></td>
<td><input id="txtGroupName" name="Name" class="easyui-validatebox textbox text" data-options="required:true,validType:'blwtext'" value="<%=Model.Name %>" /></td>
</tr>
<tr>
<td class="align-right"><%: Html.Language("Sort")%></td>
<td><input id="txtGroupSort" name="Sort" class="easyui-numberspinner text" style="width:60px;" data-options="required:true,min:1" value="<%=Model.Sort %>" /></td>
</tr>
</table>
</form>