+
+
+
+ <#form:form id="inputForm" model="${testData}" action="${ctx}/test/testData/save" method="post" class="form-horizontal">
+
+ ${testData.isNewRecord ? '新增数据' : '编辑数据'}
+
+
+
+
+
+
+
+ #form:form>
+ 基本信息
+ <#form:hidden path="id"/>
+
+
+
+
+
+
+
+
+ <#form:input path="testInput" maxlength="200" class="form-control"/>
+
+
+
+
+
+
+
+
+
+ <#form:textarea path="testTextarea" rows="4" maxlength="200" class="form-control"/>
+
+
+
+
+
+
+
+
+
+ <#form:select path="testSelect" dictType="sys_menu_type" blankOption="true" class="form-control" />
+
+
+
+
+
+
+
+ <#form:select path="testSelectMultiple" dictType="sys_menu_type" multiple="true" blankOption="true" class="form-control" />
+
+
+
+
+
+
+
+
+
+ <#form:radio path="testRadio" dictType="sys_menu_type" class="form-control" />
+
+
+
+
+
+
+
+ <#form:checkbox path="testCheckbox" dictType="sys_menu_type" class="form-control" />
+
+
+
+
+
+
+
+
+
+ <#form:input path="testDate" readonly="true" maxlength="20" class="form-control Wdate required"
+ dataFormat="date" onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
+
+
+
+
+
+
+
+ <#form:input path="testDatetime" readonly="true" maxlength="20" class="form-control Wdate required"
+ dataFormat="datetime" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm',isShowClear:false});"/>
+
+
+
+
+
+
+
+
+
+ <#form:treeselect id="testUser" title="用户"
+ path="testUser.userCode" labelPath="testUser.userName"
+ url="${ctx}/sys/office/treeData?isLoadUser=true"
+ class="" allowClear="true"/>
+
+
+
+
+
+
+
+ <#form:treeselect id="testOffice" title="部门"
+ path="testOffice.officeCode" labelPath="testOffice.officeName"
+ url="${ctx}/sys/office/treeData"
+ class="" allowClear="true"/>
+
+
+
+
+
+
+
+
+
+ <#form:treeselect id="testAreaCode" title="区域"
+ path="testAreaCode" labelPath="testAreaName"
+ url="${ctx}/sys/area/treeData"
+ class="" allowClear="true"/>
+
+
+
+
+
+
+
+
+
+ <#form:ueditor path="remarks" maxlength="10000" height="200" class="required"
+ simpleToolbars="true" readonly="false" outline="false"/>
+
+
+
+
+
+
+
+
+
+ <#form:fileupload id="uploadImage" bizKey="${testData.id}" bizType="testData_image"
+ uploadType="image" class="" readonly="false"/>
+
+
+
+
+
+
+
+
+
+ <#form:fileupload id="uploadFile" bizKey="${testData.id}" bizType="testData_file"
+ uploadType="all" class="" readonly="false"/>
+
+ 测试数据子表
+
+
+ <% if (hasPermi('test:testData:edit')){ %>
+ 增行
+ <% } %>
+
+