article2.html
10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<include file="public/min-header"/>
<script type="text/javascript">
window.UEDITOR_Admin_URL = "__ROOT__/public/plugins/Ueditor/";
var URL_upload = "{$URL_upload}";
var URL_fileUp = "{$URL_fileUp}";
var URL_scrawlUp = "{$URL_scrawlUp}";
var URL_getRemoteImage = "{$URL_getRemoteImage}";
var URL_imageManager = "{$URL_imageManager}";
var URL_imageUp = "{$URL_imageUp}";
var URL_getMovie = "{$URL_getMovie}";
var URL_home = "{$URL_home}";
</script>
<load href="__ROOT__/public/plugins/Ueditor/ueditor.config.js"/>
<load href="__ROOT__/public/plugins/Ueditor/ueditor.all.js"/>
<link href="__PUBLIC__/plugins/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
<script src="__PUBLIC__/plugins/daterangepicker/moment.min.js" type="text/javascript"></script>
<script src="__PUBLIC__/plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
<div class="wrapper">
<include file="public/breadcrumb"/>
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">发布文章</h3>
<a href="{:U('Article/articleList')}" data-toggle="tooltip" title="" class="btn btn-default pull-right" data-original-title="返回"><i class="fa fa-reply"></i></a>
</div>
<form class="form-horizontal" action="{:U('Article/aticleHandle')}" id="add_post" method="post">
<div class="box-body">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">文章标题</label>
<div class="col-sm-8">
<input type="text" class="form-control" value="{$info.title}" name="title" >
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">文章类别</label>
<div class="col-sm-2">
<select class="small form-control" name="cat_id" id="cat_id">
<option value="0">选择分类</option>
{$cat_select}
</select>
</div>
</div>
<div class="form-group">
<label for="text" class="col-sm-2 control-label">banner图</label>
<div class="col-sm-8"><input type="text" id="imagetext" name="thumb" value="{$info.thumb}"><input type="button" class="button" onClick="GetUploadify(1,'imagetext','article','')" value="上传图片"/></div>
</div>
<div class="form-group">
<label for="text" class="col-sm-2 control-label">seo关键字</label>
<div class="col-sm-8">
<input type="text" class="form-control" name="keywords" value="{$info.keywords}">
</div>
</div>
<div class="form-group">
<label for="text" class="col-sm-2 control-label">外部链接</label>
<div class="col-sm-8">
<input type="text" class="form-control" name="link" value="{$info.link}">
</div>
</div>
<div class="form-group">
<label for="text" class="col-sm-2 control-label">发布时间</label>
<div class="col-sm-8">
<div class="input-prepend input-group">
<span class="add-on input-group-addon">
<i class="glyphicon glyphicon-calendar fa fa-calendar">
</i>
</span>
<input type="text" class="form-control" id ="publish_time" name="publish_time" value="{$info.publish_time|date="Y-m-d",###}">
</div>
</div>
</div>
<div class="form-group">
<label for="text" class="col-sm-2 control-label">是否显示</label>
<div class="col-sm-5">
<div class="col-sm-2">
<label><input type="radio" name="is_open" value="1"<if condition="$info[is_open] eq 1"> checked="checked"</if>> 显示 </label>
</div>
<div class="col-sm-3">
<label><input type="radio" name="is_open" value="0"<if condition="$info[is_open] eq 0"> checked="checked"</if>> 不显示</label>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2">网页描述</label>
<div class="col-sm-8">
<textarea class="form-control" id="post_description" name="description" title="">{$info.description}</textarea>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2">文章内容</label>
<div class="col-sm-8">
<textarea class="span12 ckeditor" id="post_content" name="content" title="">
{$info.content}
</textarea>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2">
<input type="hidden" name="act" value="{$act}">
<input type="hidden" name="article_id" value="{$info.article_id}"></label>
<div class="col-sm-8">
<button type="reset" class="btn btn-default">重置</button>
<button type="button" onclick="checkForm()" class="btn btn-info pull-right">提交</button>
</div>
</div>
</div>
<div class="box-footer row">
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<script type="text/javascript">
var url="{:url('Ueditor/index',array('savepath'=>'article'))}";
var editor;
$(function () {
//具体参数配置在 editor_config.js 中
var options = {
zIndex: 999,
initialFrameWidth: "100%", //初化宽度
initialFrameHeight: 400, //初化高度
focus: false, //初始化时,是否让编辑器获得焦点true或false
maximumWords: 99999, removeFormatAttributes: 'class,style,lang,width,height,align,hspace,valign',//允许的最大字符数 'fullscreen',
pasteplain:false, //是否默认为纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴
autoHeightEnabled: true
/* autotypeset: {
mergeEmptyline: true, //合并空行
removeClass: true, //去掉冗余的class
removeEmptyline: false, //去掉空行
textAlign: "left", //段落的排版方式,可以是 left,right,center,justify 去掉这个属性表示不执行排版
imageBlockLine: 'center', //图片的浮动方式,独占一行剧中,左右浮动,默认: center,left,right,none 去掉这个属性表示不执行排版
pasteFilter: false, //根据规则过滤没事粘贴进来的内容
clearFontSize: false, //去掉所有的内嵌字号,使用编辑器默认的字号
clearFontFamily: false, //去掉所有的内嵌字体,使用编辑器默认的字体
removeEmptyNode: false, //去掉空节点
//可以去掉的标签
removeTagNames: {"font": 1},
indent: false, // 行首缩进
indentValue: '0em' //行首缩进的大小
}*/
,serverUrl:url
};
editor = new UE.ui.Editor(options);
editor.render("post_content");
});
$('#publish_time').daterangepicker({
format:"YYYY-MM-DD",
singleDatePicker: true,
showDropdowns: true,
minDate:'2016-01-01',
maxDate:'2030-01-01',
startDate:'{$info.publish_time|date="Y-m-d",###}',
locale : {
applyLabel : '确定',
cancelLabel : '取消',
fromLabel : '起始时间',
toLabel : '结束时间',
customRangeLabel : '自定义',
daysOfWeek : [ '日', '一', '二', '三', '四', '五', '六' ],
monthNames : [ '一月', '二月', '三月', '四月', '五月', '六月','七月', '八月', '九月', '十月', '十一月', '十二月' ],
firstDay : 1
}
});
function checkForm(){
layer.msg('加载中...', {icon: 16,shade: [0.5, '#f5f5f5'],scrollbar: false,offset: '10px', time:100000}) ;
if($('input[name="title"]').val() == ''){
alert("请填写文章标题!");
return false;
}
if($('#cat_id').val() == '' || $('#cat_id').val() == 0){
alert("请选择文章类别!");
return false;
}
if($('#post_content').val() == ''){
alert("请填写文章内容!");
return false;
}
$('#add_post').submit();
}
<!-- 系统保留分类 start-->
var article_main_system_id = <?php echo json_encode($article_main_system_id); ?>;
$("#cat_id").change(function(){
var v = parseInt($(this).val());
if(jQuery.inArray(v, article_main_system_id) != -1){
alert("系统保留分类,不允许在该分类添加文章");
$(this).val(0);
}
});
$("#cat_id2").change(function(){
var v = parseInt($(this).val());
if(jQuery.inArray(v, article_main_system_id) != -1){
alert("系统保留分类,不允许在该分类添加文章");
$(this).val(0);
}
});
<!-- 系统保留分类 end -->
</script>
</body>
</html>