${text(msgInner.isNewRecord ? '发送消息' : '编辑消息')}
<#form:form id="inputForm" model="${msgInner}" action="${ctx}/msg/msgInner/save" method="post" class="form-horizontal">
${text('基本信息')}
<#form:hidden path="id"/> <#form:hidden path="status"/>
<#form:input path="msgTitle" maxlength="200" class="form-control required text-ruler"/>
<#form:radio path="contentLevel" dictType="msg_inner_content_level" class="form-control required" />
<#form:radio path="contentType" dictType="msg_inner_content_type" class="form-control" />
<#form:ueditor path="msgContent" rows="4" class="form-control required" simpleToolbars="true"/>
<#form:fileupload id="uploadFile" bizKey="${msgInner.id}" bizType="msgInner_file" uploadType="all" class="" readonly="false" preview="true"/>
${text('接受者信息')}
<#form:radio path="receiveType" dictType="msg_inner_receiver_type" class="form-control required" /> <#form:treeselect id="receive" title="${text('接受者选择')}" path="receiveCodes" labelPath="receiveNames" url="${ctx}/sys/office/treeData?isLoadUser=true" class=" required" allowClear="true" checkbox="true"/>
<#form:checkbox path="notifyTypes" dictType="sys_msg_type" class="form-control required" /> <% if(__info_type == '0'){ %>(专业版功能)<% } %>
<% if(!msgInner.isNewRecord){ %>
${text('发送者信息')}
<#form:input path="sendUserName" readonly="true" maxlength="100" class="form-control required"/>
<#form:input path="sendDate" dataFormat="datetime" readonly="true" maxlength="20" class="form-control required"/>
<% } %>