var pageCurr;
|
var pageCount = 0;
|
var treeCond;
|
var admin;
|
layui.config({
|
base: baseUrl + "/static/layui/lay/modules/"
|
}).extend({
|
cascader: 'cascader/cascader',
|
}).use(['table','laydate', 'form', 'admin', 'xmSelect', 'element', 'cascader', 'tree', 'dropdown'], function(){
|
var table = layui.table;
|
var $ = layui.jquery;
|
var layer = layui.layer;
|
var form = layui.form;
|
admin = layui.admin;
|
var tree = layui.tree;
|
var dropdown = layui.dropdown;
|
|
$('#organization').html(localStorage.getItem('nickname') + ' <i class="layui-icon"></i>');
|
|
// 部门人员 筛选
|
dropdown.render({
|
elem: '#organization'
|
,content: ['<div id="organizationTree" style="height: calc(100vh - 525px);border: none"></div>'].join('')
|
,style: 'width: 370px; height: 350px; padding: 0 15px; box-shadow: 1px 1px 30px rgb(0 0 0 / 12%);'
|
,ready: function(){
|
loadTree();
|
}
|
});
|
|
// 数据同步
|
dropdown.render({
|
elem: '#data-btn'
|
,align: 'right'
|
,style: 'border-radius: 5px;'
|
,className: 'site-dropdown-demo'
|
,data: [
|
{
|
title: '模板下载'
|
,templet: '<i class="layui-icon layui-icon-template-1"></i>{{d.title}}'
|
,id: 1
|
},
|
{
|
title: '导入 Excel'
|
,templet: '<i class="layui-icon layui-icon-upload"></i>{{d.title}}'
|
,id: 2
|
},
|
{type: '-'}, //分割线
|
{
|
title: '导出 Excel'
|
,templet: '<i class="layui-icon layui-icon-export"></i>{{d.title}}'
|
,id: 3
|
}
|
]
|
,click: async function(item){
|
switch (item.id) {
|
case 1:
|
// 模板下载
|
layer.load(1, {shade: [0.1,'#fff']});
|
location.href = baseUrl + "/mould/甲方单位导入模板.xls";
|
layer.closeAll('loading');
|
break
|
case 2:
|
// 导入 Excel
|
$("#importExcel").trigger("click");
|
// let arrFileHandle = await window.showOpenFilePicker()
|
// let file = await arrFileHandle[0].getFile();
|
// upload(file);
|
break
|
case 3:
|
// 导出 Excel
|
layer.msg("来不及做,等等", {icon: 6});
|
break
|
default:
|
break
|
}
|
}
|
});
|
|
// 树形图
|
var organizationTree;
|
window.loadTree = function(condition){
|
var loadIndex = layer.load(2);
|
$.ajax({
|
url: baseUrl+"/dept/user/tree/auth",
|
headers: {'token': localStorage.getItem('token')},
|
data: {
|
'condition': condition
|
},
|
method: 'POST',
|
success: function (res) {
|
layer.close(loadIndex);
|
if (res.code === 200){
|
organizationTree = tree.render({
|
elem: '#organizationTree',
|
id: 'organizationTree',
|
onlyIconControl: true,
|
data: res.data,
|
click: function (obj) {
|
treeCond = {
|
key: obj.data.key,
|
val: obj.data.id
|
}
|
$('#organization').html(obj.data.title + ' <i class="layui-icon"></i>');
|
$('#organizationTree').find('.ew-tree-click').removeClass('ew-tree-click');
|
$(obj.elem).children('.layui-tree-entry').addClass('ew-tree-click');
|
clearFormVal($('#search-box'));
|
tableIns.reload({
|
where: {[obj.data.key]: obj.data.id},
|
page: {curr: 1}
|
});
|
}
|
});
|
treeData = res.data;
|
} else if (res.code === 403){
|
top.location.href = baseUrl+"/";
|
} else {
|
layer.msg(res.msg)
|
}
|
}
|
})
|
}
|
|
// 数据渲染
|
tableIns = table.render({
|
elem: '#item',
|
headers: {token: localStorage.getItem('token')},
|
url: baseUrl+'/item/list/auth',
|
page: true,
|
limit: 15,
|
limits: [15, 30, 50, 100, 200, 500],
|
cellMinWidth: 150,
|
height: 'full-148',
|
// size: 'sm',
|
skin: 'line',
|
cols: [[
|
{type: 'checkbox'}
|
,{field: 'id', align: 'center',title: 'ID'}
|
,{field: 'hostId', align: 'center',title: 'hostId',hide:true}
|
,{field: 'orderNum', align: 'center',title: '项目编号'}
|
,{field: 'name', align: 'left',title: '项目名称'}
|
,{field: 'inOrderNum', align: 'left',title: '内部编号'}
|
,{field: 'cstmrUuid', align: 'left',title: '客户编号'}
|
,{field: 'cstmr', align: 'left',title: '客户'}
|
,{field: 'member$', align: 'left',title: '业务员'}
|
,{field: 'leader$', align: 'left',title: '项目经理'}
|
,{field: 'step$', align: 'left',title: '项目进度'}
|
,{field: 'startTime$', align: 'left',title: '开始时间'}
|
,{field: 'endTime$', align: 'left',title: '结束时间'}
|
,{field: 'updateTime$', align: 'left',title: '更新时间'}
|
,{field: 'status$', align: 'left',title: '状态'}
|
,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120}
|
]],
|
request: {
|
pageName: 'curr',
|
pageSize: 'limit'
|
},
|
parseData: function (res) {
|
return {
|
'code': res.code,
|
'msg': res.msg,
|
'count': res.data.total,
|
'data': res.data.records
|
}
|
},
|
response: {
|
statusCode: 200
|
},
|
done: function(res, curr, count) {
|
if (res.code === 403) {
|
top.location.href = baseUrl+"/";
|
}
|
pageCurr=curr;
|
pageCount = count;
|
limit();
|
}
|
});
|
|
// 添加
|
$("#AddBtn").click(function () {
|
showEditModel();
|
});
|
|
// 删除
|
form.on('submit(itemDel)', function (data) {
|
let checkStatus = layui.table.checkStatus('item').data;
|
if (checkStatus.length === 0) {
|
layer.msg('请选择要删除的数据', {icon: 2});
|
return;
|
}
|
del(checkStatus.map(function (d) {
|
return d.id;
|
}));
|
});
|
|
// 监听排序事件
|
table.on('sort(item)', function (obj) {
|
var searchData = {};
|
$.each($('#search-box [name]').serializeArray(), function() {
|
searchData[this.name] = this.value;
|
});
|
searchData['orderByField'] = obj.field;
|
searchData['orderByType'] = obj.type;
|
tableIns.reload({
|
where: searchData,
|
page: {curr: 1}
|
});
|
});
|
|
// 监听行工具事件
|
table.on('tool(item)', function(obj){
|
var data = obj.data;
|
switch (obj.event) {
|
case 'more':
|
top.cstmrByMore = data.id;
|
admin.popupRight({
|
type: 1,
|
window: "top",
|
area: "1250px",
|
url: "cstmr_more.html",
|
end: function () {
|
// $(".layui-laypage-btn")[0].click();
|
}
|
})
|
break;
|
case 'edit':
|
showEditModel(data);
|
break;
|
case "del":
|
del([data.id]);
|
break;
|
}
|
});
|
|
/* 弹窗 - 新增、修改 */
|
function showEditModel(mData) {
|
admin.open({
|
type: 1,
|
area: '1400px',
|
title: (mData ? '修改' : '添加') + '项目',
|
content: $('#editDialog').html(),
|
success: function (layero, dIndex) {
|
form.val('detail', mData);
|
form.on('submit(editSubmit)', function (data) {
|
var loadIndex = layer.load(2);
|
$.ajax({
|
url: baseUrl+"/item/"+(mData?'update':'add')+"/auth",
|
headers: {'token': localStorage.getItem('token')},
|
data: data.field,
|
method: 'POST',
|
success: function (res) {
|
layer.close(loadIndex);
|
if (res.code === 200){
|
layer.close(dIndex);
|
layer.msg(res.msg, {icon: 1});
|
tableReload()
|
} else if (res.code === 403){
|
top.location.href = baseUrl+"/";
|
}else {
|
layer.msg(res.msg, {icon: 2});
|
}
|
}
|
})
|
return false;
|
});
|
$(layero).children('.layui-layer-content').css('overflow', 'visible');
|
layui.form.render('select');
|
}
|
});
|
}
|
|
/* 删除 */
|
function del(ids) {
|
layer.confirm('确定要删除选中数据吗?', {
|
skin: 'layui-layer-admin',
|
shade: .1
|
}, function (i) {
|
layer.close(i);
|
var loadIndex = layer.load(2);
|
$.ajax({
|
url: baseUrl+"/item/delete/auth",
|
headers: {'token': localStorage.getItem('token')},
|
data: {ids: ids},
|
method: 'POST',
|
traditional:true,
|
success: function (res) {
|
layer.close(loadIndex);
|
if (res.code === 200){
|
layer.msg(res.msg, {icon: 1});
|
tableReload();
|
} else if (res.code === 403){
|
top.location.href = baseUrl+"/";
|
} else {
|
layer.msg(res.msg, {icon: 2});
|
}
|
}
|
})
|
});
|
}
|
|
// 搜索
|
form.on('submit(search)', function (data) {
|
pageCurr = 1;
|
pageCount = 0;
|
tableReload();
|
});
|
|
});
|
|
// 关闭动作
|
$(document).on('click','#data-detail-close', function () {
|
parent.layer.closeAll();
|
});
|
|
function tableReload() {
|
if (pageCount === 0) {
|
let searchData = {};
|
$.each($('#search-box [name]').serializeArray(), function() {
|
searchData[this.name] = this.value;
|
});
|
if (treeCond) {
|
searchData[treeCond.key] = treeCond.val;
|
}
|
tableIns.reload({
|
where: searchData,
|
page: {curr: pageCurr}
|
});
|
} else {
|
$(".layui-laypage-btn")[0].click();
|
}
|
}
|