lihai-oa/public/static/assets/gougu/module/oaComment.js

197 lines
7.6 KiB
JavaScript
Raw Normal View History

2023-10-24 15:17:16 +08:00
layui.define(['tool'], function (exports) {
const layer = layui.layer, tool = layui.tool;
const obj = {
addLink: function (id, topic_id, module, url, desc) {
let that = this;
layer.open({
title: '添加链接',
type: 1,
area: ['580px', '240px'],
content: '<div class="px-4 pt-4"><div class="layui-input-inline mr-3">URL</div><div class="layui-input-inline" style="width:500px;"><input type="text" id="box_url" placeholder="请输入URL" value="' + url + '" class="layui-input" autocomplete="off" /></div></div><div class="px-4 pt-4"><div class="layui-input-inline mr-3">说明 </div><div class="layui-input-inline" style="width:500px;"><input type="text" id="box_desc" placeholder="请输入链接说明" value="' + desc + '" class="layui-input" autocomplete="off" /></div></div>',
btnAlign: 'c',
btn: ['提交发布'],
yes: function () {
let callback = function (e) {
if(e.code==0){
layer.closeAll();
layer.msg(e.msg);
if(module == 'project'){
setTimeout(function(){
location.reload();
},2000)
}
else{
tool.load('/' + module + '/index/view/id/' + topic_id);
}
}
else{
layer.msg(e.msg);
}
}
let url = $('#box_url').val();
let desc = $('#box_desc').val();
if (url == '') {
layer.msg('请输入URL');
return false;
}
if (desc == '') {
layer.msg('请输入链接说明');
return false;
}
let postData = { id: id, topic_id: topic_id, module: module, url: url, desc: desc };
tool.post("/project/api/add_link", postData, callback);
}
})
},
log: function (topic_id, module) {
let callback = function (res) {
if (res.code == 0 && res.data.length > 0) {
let itemLog = '';
$.each(res.data, function (index, item) {
if (item.field == 'content') {
itemLog += `
<div class="log-item py-3 border-b">
<i class="iconfont ${item.icon}"></i>
<span class="log-name">${item.name}</span>
<span class="log-content gray"> ${item.action}<strong>${item.title}</strong><i title="对比查看" class="iconfont icon-yuejuan" style="color:#1E9FFF; cursor: pointer;"></i> <span class="gray" title="${item.create_time}">${item.times}</span></span>
</div>
`;
}
else if (item.field == 'file' || item.field == 'link' || item.field == 'user') {
itemLog += `
<div class="log-item py-3 border-b">
<i class="iconfont ${item.icon}"></i>
<span class="log-name">${item.name}</span>
<span class="log-content gray"> ${item.action}了${item.title}<strong>${item.new_content}</strong><span class="gray" title="${item.create_time}">${item.times}</span></span>
</div>
`;
} else if (item.field == 'new' || item.field == 'delete') {
itemLog += `
<div class="log-item py-3 border-b">
<i class="iconfont ${item.icon}"></i>
<span class="log-name">${item.name}</span>
<span class="log-content gray"> ${item.action}<strong>${item.title}</strong><span class="gray" title="${item.create_time}">${item.times}</span></span>
</div>
`;
}
else if (item.field == 'document') {
if (item.action == '修改') {
itemLog += `
<div class="log-item py-3 border-b">
<i class="iconfont ${item.icon}"></i>
<span class="log-name">${item.name}</span>
<span class="log-content gray"> ${item.action}了${item.title}<strong>${item.remark}</strong><i title="对比查看" class="iconfont icon-yuejuan" style="color:#1E9FFF; cursor: pointer;"></i> <span class="gray" title="${item.create_time}">${item.times}</span></span>
</div>
`;
}
else {
itemLog += `
<div class="log-item py-3 border-b">
<i class="iconfont ${item.icon}"></i>
<span class="log-name">${item.name}</span>
<span class="log-content gray"> ${item.action}了${item.title}<strong>${item.remark}</strong><span class="gray" title="${item.create_time}">${item.times}</span></span>
</div>
`;
}
}
else {
itemLog += `
<div class="log-item py-3 border-b">
<i class="iconfont ${item.icon}"></i>
<span class="log-name">${item.name}</span>
<span class="log-content gray"> <strong>${item.title}</strong> ${item.old_content} ${item.action}<strong>${item.new_content}</strong><span class="gray" title="${item.create_time}">${item.times}</span></span>
</div>
`;
}
});
$("#log_" + module + "_" + topic_id).html(itemLog);
}
}
tool.get("/project/api/task_log", { tid: topic_id, m: module }, callback);
},
load: function (topic_id, module) {
let callback = function (res) {
if (res.code == 0 && res.data.length > 0) {
let itemComment = '';
$.each(res.data, function (index, item) {
let pAdmin = '', ops = '';
if (item.padmin_id > 0) {
pAdmin = '<span class="blue">@' + item.pname + '</span>';
}
if (item.admin_id == login_admin) {
ops = '<a class="mr-4" data-event="edit" data-id="' + item.id + '">编辑</a><a class="mr-4" data-event="del" data-id="' + item.id + '">删除</a>';
}
itemComment += `
<div id="comment_${item.id}" class="comment-item py-3 border-t" data-content="${item.content}">
<div class="comment-avatar" title="${item.name}">
<img class="comment-image" src="${item.thumb}">
</div>
<div class="comment-body">
<div class="comment-meta">
<strong class="comment-name">${item.name}</strong><span class="ml-2 gray" title="${item.create_time}">${item.times}${item.update_time}</span>
</div>
<div class="comment-content py-2">${pAdmin} ${item.content}</div>
<div class="comment-actions">
<a class="mr-4" data-event="replay" data-id="${item.id}" data-uid="${item.admin_id}">回复</a>${ops}
</div>
</div>
</div>
`;
});
$("#comment_" + module + "_" + topic_id).html(itemComment);
layer.closeAll();
}
}
tool.get("/project/api/project_comment", { tid: topic_id, m: module }, callback);
},
add: function (id, topic_id, pid, padmin_id, module, content, md_content) {
let that = this;
let callback = function (res) {
that.load(topic_id, module);
}
if (content == '') {
layer.msg('请完善评论内容');
return false;
}
let postData = { id: id, topic_id: topic_id, pid: pid, padmin_id: padmin_id, module: module, content: content, md_content: md_content };
tool.post("/project/api/add_comment", postData, callback);
},
del: function (id, topic_id, module) {
let that = this;
layer.confirm('确定删除该评论吗?', {
icon: 3,
title: '提示'
}, function (index) {
let callback = function (e) {
layer.msg(e.msg);
if (e.code == 0) {
that.load(topic_id, module);
}
}
tool.delete("/project/api/delete_comment", { id: id }, callback);
layer.close(index);
});
},
//文本
textarea: function (id, topic_id, pid, padmin_id, module, txt) {
let that = this;
layer.open({
type: 1,
title: '请输入内容',
area: ['800px', '360px'],
content: '<div style="padding:5px;"><textarea class="layui-textarea" id="editTextarea" style="width: 100%; height: 240px;">'+txt+'</textarea></div>',
btnAlign: 'c',
btn: ['提交保存'],
yes: function () {
let newval = $("#editTextarea").val();
if (newval != '') {
that.add(id, topic_id, pid, padmin_id, module, newval);
} else {
layer.msg('请输入内容');
}
}
})
}
};
exports('oaComment', obj);
});