You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.1 KiB
53 lines
2.1 KiB
{extend name="admin@public/base" /}
|
|
{block name="main-content"}
|
|
<div class="page-content">
|
|
|
|
|
|
|
|
<!--主题-->
|
|
<div class="page-header">
|
|
<h1>
|
|
您当前操作
|
|
<small>
|
|
<i class="ace-icon fa fa-angle-double-right"></i>
|
|
托管公告模板设置
|
|
</small>
|
|
</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<form class="form-horizontal ajaxForm" name="sys" method="post" action="{:url('tuoguan/Tgsetup/tgsuccessggrun')}">
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label no-padding-right" for="form-field-1"> 模板内容: </label>
|
|
<div class="col-sm-10">
|
|
<script src="__PUBLIC__/ueditor/ueditor.config.js" type="text/javascript"></script>
|
|
<script src="__PUBLIC__/ueditor/ueditor.all.js" type="text/javascript"></script>
|
|
<textarea name="options[content_tpl]" rows="100%" style="width:100%" id="myEditor">{$sys.content_tpl}</textarea>
|
|
<script type="text/javascript">
|
|
var editor = new UE.ui.Editor();
|
|
editor.render("myEditor");
|
|
</script>
|
|
<span style="color: #F3920A;"></span>
|
|
</div>
|
|
</div>
|
|
<div class="space-4"></div>
|
|
<div class="clearfix form-actions">
|
|
<div class="col-sm-offset-3 col-sm-9">
|
|
<button class="btn btn-info" type="submit">
|
|
<i class="ace-icon fa fa-check bigger-110"></i>
|
|
保存
|
|
</button>
|
|
|
|
|
|
<button class="btn" type="reset">
|
|
<i class="ace-icon fa fa-undo bigger-110"></i>
|
|
重置
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block}
|