99 lines
4.3 KiB
HTML
99 lines
4.3 KiB
HTML
{template "header.html"}
|
|
<script>
|
|
{$auto_form_data_ajax}
|
|
</script>
|
|
|
|
<form action="" class="form-horizontal" method="post" name="myform" id="myform">
|
|
{$form}
|
|
<div class="row myfbody {if $is_verify} fc-verify-post{/if}">
|
|
<div class="{if $is_mobile}col-md-12{else}col-md-9{/if}">
|
|
|
|
<div class="portlet light bordered">
|
|
<div class="portlet-title">
|
|
<div class="caption">
|
|
<span class="caption-subject font-green sbold ">{dr_lang('基本内容')}</span>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<div class="btn-group">
|
|
<a class="btn" href="{$reply_url}"> <i class="fa fa-mail-reply"></i> {dr_lang('返回列表')}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="portlet-body">
|
|
<div class="form-body">
|
|
<div class="form-group">
|
|
<label class="col-md-2 control-label">{dr_lang('关联')}</label>
|
|
<div class="col-md-9" style="padding-top: 7px;">
|
|
<code class="form-control-static"><a href="{$index.url}" target="_blank">{dr_clearhtml($index.title)}</a></code>
|
|
</div>
|
|
</div>
|
|
{$myfield}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{if $diyfield}
|
|
<div class="portlet light bordered">
|
|
<div class="portlet-title">
|
|
<div class="caption">
|
|
<span class="caption-subject font-green sbold ">{dr_lang('其他内容')}</span>
|
|
</div>
|
|
</div>
|
|
<div class="portlet-body">
|
|
<div class="form-body">
|
|
{$diyfield}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
</div>
|
|
<div class="{if $is_mobile}col-md-12{else}col-md-3{/if} my-sysfield">
|
|
<div class="portlet light bordered">
|
|
<div class="portlet-body">
|
|
<div class="form-body ">
|
|
{$sysfield}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="portlet-body form myfooter">
|
|
<div class="form-actions text-center">
|
|
{if $is_verify}
|
|
<script>
|
|
function dr_verify() {
|
|
if ($("input[name='data[status]']:checked").val() == 0) {
|
|
layer.confirm('{dr_lang("您需要将它设置为通过状态吗?")}', {
|
|
icon: 3,
|
|
shade: 0,
|
|
title: '{dr_lang("审核提示")}',
|
|
btn: ['{dr_lang("设为通过")}','{dr_lang("保持现状")}']
|
|
}, function(){
|
|
$("input[name='data[status]'][value='1']").prop('checked',true);
|
|
dr_ajax_submit('{dr_now_url()}', 'myform', '2000', '{$reply_url}');
|
|
}, function(){
|
|
dr_ajax_submit('{dr_now_url()}', 'myform', '2000', '{$reply_url}');
|
|
});
|
|
} else {
|
|
dr_ajax_submit('{dr_now_url()}', 'myform', '2000', '{$reply_url}');
|
|
}
|
|
|
|
}
|
|
</script>
|
|
<label><button type="button" onclick="dr_verify()" class="btn green"> <i class="fa fa-save"></i> {dr_lang('提交审核')}</button></label>
|
|
{else}
|
|
<label><button type="button" onclick="dr_ajax_submit('{dr_now_url()}', 'myform', '2000')" class="btn green"> <i class="fa fa-save"></i> {dr_lang('保存内容')}</button></label>
|
|
<label><button type="button" onclick="dr_ajax_submit('{dr_now_url()}', 'myform', '2000', '{$reply_url}')" class="btn yellow"> <i class="fa fa-mail-reply-all"></i> {dr_lang('保存并返回')}</button></label>
|
|
{if $is_form_cache}
|
|
<label><button type="button" onclick="auto_form_data_delete()" class="btn red"> <i class="fa fa-trash"></i> {dr_lang('删除历史缓存')}</button></label>
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
{template "footer.html"} |