2023-03-16 22:40:15 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>修改页面</title>
|
|
|
|
<link rel="stylesheet" href="/static/component/pear/css/pear.css" />
|
2023-07-03 12:52:34 +08:00
|
|
|
<style>
|
|
|
|
#L_title {position: relative;}
|
|
|
|
.bdsug {height: auto; position: absolute; left: 0; top: 30px; z-index: 100; background: #fff; border-radius: 0 0 10px 10px; border: 1px solid #dadade!important; border-top: 0!important; box-shadow: none;}
|
|
|
|
.bdsug ul{display: block;margin: 5px 2px 0; padding: 5px 0 7px; background: 0 0; border-top: 0px solid #f5f5f6;}
|
|
|
|
.bdsug ul>li{margin-top: 0;height:30px;line-height: 25px;}
|
|
|
|
</style>
|
2023-03-16 22:40:15 +08:00
|
|
|
</head>
|
2023-04-23 10:36:27 +08:00
|
|
|
<body>
|
|
|
|
<form class="layui-form" action="">
|
|
|
|
<div class="mainBox">
|
|
|
|
<div class="main-container">
|
|
|
|
<input type="hidden" name="id" value="{$article.id}">
|
|
|
|
<div class="layui-row layui-col-space15 layui-form-item">
|
|
|
|
<div class="layui-col-md3">
|
|
|
|
<label class="layui-form-label">{:lang('special column')}</label>
|
|
|
|
<div class="layui-input-block">
|
2023-07-03 12:50:57 +08:00
|
|
|
<div id="CateId" class="xm-select-demo"></div>
|
2023-04-23 10:36:27 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-col-md8">
|
|
|
|
<label for="L_title" class="layui-form-label">{:lang('title')}</label>
|
|
|
|
<div class="layui-input-block">
|
|
|
|
<input type="text" id="L_title" name="title" required lay-verify="required" autocomplete="off" class="layui-input" value="{$article.title}">
|
|
|
|
<input type="hidden" id="L_title_color" name="title_color" autocomplete="off" class="layui-input" value="{$article.title_color ?? '#333'}">
|
|
|
|
<input type="hidden" name="user_id" value="{$article.user_id}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-col-md1">
|
|
|
|
<div id="color"></div>
|
|
|
|
<div id="test9" style="margin-left: 30px;"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-form-item layui-form-text">
|
|
|
|
<div class="layui-input-block">
|
2023-07-03 12:52:34 +08:00
|
|
|
<textarea id="L_content" name="content" required lay-verify="required" placeholder="详细内容" class="layui-textarea taonyeditor">{$article.content}</textarea>
|
2023-04-23 10:36:27 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-form-item">
|
|
|
|
<div class="layui-inline">
|
|
|
|
<label class="layui-form-label">{:lang('enclosure')}</label>
|
|
|
|
<div class="layui-input-inline" style="width: 190px;">
|
|
|
|
<input type="text" class="layui-input" name="upzip" value="{$article.upzip ?? ''}" placeholder="zip,jpg格式" title="上传附件"/>
|
|
|
|
</div>
|
|
|
|
<button type="button" class="layui-btn" id="zip-button"><i class="layui-icon"></i>上传文件</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-form-item">
|
|
|
|
<label class="layui-form-label">{:lang('描述')}</label>
|
|
|
|
<div class="layui-input-block">
|
|
|
|
<textarea name="description" class="layui-textarea" placeholder="SEO描述">{$article.description}</textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{//关键词}
|
|
|
|
<div class="layui-form-item">
|
|
|
|
<label class="layui-form-label">{:lang('添加关键词')}</label>
|
|
|
|
<div class="layui-input-block">
|
|
|
|
<input type="text" class="layui-input" name="keywords" value="{$article.keywords}" placeholder="多个英文逗号隔开" title="添加关键词" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{//tag}
|
|
|
|
<div class="layui-form-item">
|
|
|
|
<label class="layui-form-label">{:lang('add tags')}</label>
|
|
|
|
<div class="layui-input-block">
|
|
|
|
<div id="tag"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-form-item layui-hide">
|
|
|
|
<button type="submit" class="layui-btn" lay-filter="article-edit" lay-submit id="article-edit">{:lang('post now')}</button>
|
|
|
|
</div>
|
2023-03-16 22:40:15 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-23 10:36:27 +08:00
|
|
|
<div class="bottom">
|
|
|
|
<div class="button-container">
|
|
|
|
<button type="submit" class="pear-btn pear-btn-primary pear-btn-sm" lay-submit="" lay-filter="forum-save">
|
|
|
|
<i class="layui-icon layui-icon-ok"></i>
|
|
|
|
提交
|
|
|
|
</button>
|
|
|
|
<button type="reset" class="pear-btn pear-btn-sm">
|
|
|
|
<i class="layui-icon layui-icon-refresh"></i>
|
|
|
|
重置
|
|
|
|
</button>
|
2023-03-16 22:40:15 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-23 10:36:27 +08:00
|
|
|
</form>
|
|
|
|
<script src="/static/component/layui/layui.js"></script>
|
|
|
|
<script src="/static/component/pear/pear.js"></script>
|
2023-03-16 22:40:15 +08:00
|
|
|
|
2023-04-23 10:36:27 +08:00
|
|
|
<script>
|
2023-07-03 12:52:34 +08:00
|
|
|
layui.use(['colorpicker','form','upload','xmSelect'], function(){
|
2023-04-23 10:36:27 +08:00
|
|
|
var $ = layui.jquery
|
|
|
|
,colorpicker = layui.colorpicker
|
|
|
|
,form = layui.form
|
|
|
|
,upload = layui.upload;
|
|
|
|
var artId = "{$article.id}";
|
2023-07-03 12:50:57 +08:00
|
|
|
var xmSelect = layui.xmSelect;
|
2023-03-16 22:40:15 +08:00
|
|
|
|
2023-04-23 10:36:27 +08:00
|
|
|
$(function(){
|
|
|
|
//1.渲染标签
|
|
|
|
var addTags = xmSelect.render({
|
|
|
|
el: '#tag',
|
|
|
|
name: 'tagid',
|
|
|
|
layVerify: '',
|
|
|
|
layVerType: 'msg',
|
|
|
|
paging: true,
|
|
|
|
pageSize: 5,
|
|
|
|
data: []
|
|
|
|
});
|
|
|
|
//2.动态赋值
|
|
|
|
$.get("{:url('content.tag/getArticleTag')}",{id:artId},function(res){
|
|
|
|
if(res.code === 0){
|
|
|
|
addTags.setValue(
|
|
|
|
res.data
|
|
|
|
)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
//3.动态标签赋值
|
|
|
|
$.get("{:url('content.tag/getAllTag')}",function(res){
|
|
|
|
if(res.code === 0){
|
|
|
|
addTags.update({
|
|
|
|
data: res.data,
|
|
|
|
autoRow: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
2023-03-16 22:40:15 +08:00
|
|
|
|
|
|
|
|
2023-07-03 12:50:57 +08:00
|
|
|
// 分类选择
|
|
|
|
$.get("{:url('content.forum/getCateList')}",function(res){
|
|
|
|
var INITCID = "{$article.cate_id}";
|
|
|
|
// 渲染下拉树
|
|
|
|
xmSelect.render({
|
|
|
|
el: '#CateId',
|
|
|
|
name: 'cate_id',
|
|
|
|
height: '250px',
|
|
|
|
layVerify: 'required',
|
|
|
|
layVerType: 'tips',
|
|
|
|
data: res.data,
|
|
|
|
initValue: [INITCID],
|
|
|
|
model: {label: {type: 'text'}},
|
|
|
|
prop: {
|
|
|
|
name: 'catename',
|
|
|
|
value: 'id'
|
|
|
|
},
|
|
|
|
radio: true,
|
|
|
|
clickClose: true,
|
|
|
|
tree: {
|
|
|
|
show: true,
|
|
|
|
indent: 15,
|
|
|
|
strict: false,
|
2024-04-01 10:08:12 +08:00
|
|
|
expandedKeys: false
|
2023-07-03 12:50:57 +08:00
|
|
|
},
|
|
|
|
tips: '请选择'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-04-23 10:36:27 +08:00
|
|
|
//预定义颜色项
|
|
|
|
colorpicker.render({
|
|
|
|
elem: '#color'
|
|
|
|
,color: "{$article.title_color ?? '#333'}"
|
|
|
|
,predefine: true // 开启预定义颜色
|
|
|
|
,done: function(color){
|
|
|
|
//譬如你可以在回调中把得到的 color 赋值给表单
|
|
|
|
$('#L_title_color').val(color);
|
|
|
|
//改变标题颜色
|
|
|
|
$('#L_title').css("color", color);
|
|
|
|
}
|
|
|
|
});
|
2023-03-16 22:40:15 +08:00
|
|
|
|
2023-04-23 10:36:27 +08:00
|
|
|
//指定允许上传的文件类型
|
|
|
|
upload.render({
|
|
|
|
elem: '#zip-button'
|
|
|
|
,url: "{:url('content.forum/uploads')}" //改成您自己的上传接口
|
|
|
|
,data: {type:'zip'}
|
2023-07-03 12:50:57 +08:00
|
|
|
,accept: 'file',
|
|
|
|
before: function(obj){
|
|
|
|
layer.load();
|
|
|
|
},
|
|
|
|
done: function(res){
|
|
|
|
layer.closeAll('loading');
|
2023-04-23 10:36:27 +08:00
|
|
|
if(res.status === 0){
|
|
|
|
$('input[name="upzip"]').val(res.url);
|
|
|
|
layer.msg('上传成功');
|
|
|
|
} else {
|
|
|
|
layer.msg(res.msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-03-16 22:40:15 +08:00
|
|
|
|
2023-04-23 10:36:27 +08:00
|
|
|
form.on('submit(forum-save)', function(data) {
|
|
|
|
$.ajax({
|
|
|
|
url: "{:url('content.forum/edit')}",
|
|
|
|
data: JSON.stringify(data.field),
|
|
|
|
dataType: 'json',
|
|
|
|
contentType: 'application/json',
|
|
|
|
type: 'post',
|
|
|
|
success: function(result) {
|
|
|
|
if (result.code === 0) {
|
|
|
|
layer.msg(result.msg, {
|
|
|
|
icon: 1,
|
|
|
|
time: 1000
|
|
|
|
}, function() {
|
2023-07-03 12:49:15 +08:00
|
|
|
parent.layui.table.reload("forum-table");
|
|
|
|
parent.layer.close(parent.layer.getFrameIndex(window.name)); //关闭当前页
|
2023-04-23 10:36:27 +08:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
layer.msg(result.msg, {
|
|
|
|
icon: 2,
|
|
|
|
time: 1000
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return false;
|
|
|
|
});
|
2023-03-16 22:40:15 +08:00
|
|
|
|
2023-04-23 10:36:27 +08:00
|
|
|
});
|
|
|
|
</script>
|
2024-04-01 10:08:12 +08:00
|
|
|
{// 编辑器}
|
|
|
|
{:hook('ueditor')}
|
2023-07-03 12:52:34 +08:00
|
|
|
{:hook('taonyeditor')}
|
|
|
|
{// 百度标题词条}
|
|
|
|
{:hook('seoBaiduTitle')}
|
|
|
|
{// 百度关键词}
|
|
|
|
{:hook('seoBaiduKeywords')}
|
2023-04-23 10:36:27 +08:00
|
|
|
</body>
|
2023-03-16 22:40:15 +08:00
|
|
|
</html>
|