...
|
...
|
@@ -40,9 +40,7 @@ |
|
|
<tr>
|
|
|
<th>幻灯片内容</th>
|
|
|
<td>
|
|
|
<textarea class="form-control" name="post[content]" id="description"
|
|
|
style="width: 47%; height: 100px;"
|
|
|
placeholder="请填写幻灯片内容">{$result.content}</textarea>
|
|
|
<script type="text/plain" id="content" name="post[post_content]">{$post.post_content}</script>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
...
|
...
|
@@ -85,5 +83,51 @@ |
|
|
</form>
|
|
|
</div>
|
|
|
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
|
|
|
<script type="text/javascript">
|
|
|
//编辑器路径定义
|
|
|
var editorURL = GV.WEB_ROOT;
|
|
|
</script>
|
|
|
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.config.js"></script>
|
|
|
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.all.min.js"></script>
|
|
|
<script type="text/javascript">
|
|
|
$(function () {
|
|
|
|
|
|
editorcontent = new baidu.editor.ui.Editor();
|
|
|
editorcontent.render('content');
|
|
|
try {
|
|
|
editorcontent.sync();
|
|
|
} catch (err) {
|
|
|
}
|
|
|
|
|
|
$('.btn-cancel-thumbnail').click(function () {
|
|
|
$('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
|
|
|
$('#thumbnail').val('');
|
|
|
});
|
|
|
|
|
|
$('#more-template-select').val("{$post.more.template|default=''}");
|
|
|
});
|
|
|
|
|
|
function doSelectCategory() {
|
|
|
var selectedCategoriesId = $('#js-categories-id-input').val();
|
|
|
openIframeLayer("{:url('AdminCategory/select')}?ids=" + selectedCategoriesId, '请选择分类', {
|
|
|
area: ['700px', '400px'],
|
|
|
btn: ['确定', '取消'],
|
|
|
yes: function (index, layero) {
|
|
|
//do something
|
|
|
|
|
|
var iframeWin = window[layero.find('iframe')[0]['name']];
|
|
|
var selectedCategories = iframeWin.confirm();
|
|
|
if (selectedCategories.selectedCategoriesId.length == 0) {
|
|
|
layer.msg('请选择分类');
|
|
|
return;
|
|
|
}
|
|
|
$('#js-categories-id-input').val(selectedCategories.selectedCategoriesId.join(','));
|
|
|
$('#js-categories-name-input').val(selectedCategories.selectedCategoriesName.join(' '));
|
|
|
//console.log(layer.getFrameIndex(index));
|
|
|
layer.close(index); //如果设定了yes回调,需进行手工关闭
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
|
|
</html> |
|
|
\ No newline at end of file |
...
|
...
|
|