231 lines
7.7 KiB
HTML
231 lines
7.7 KiB
HTML
<table class="layui-table layui-table-form" style="margin-top:12px">
|
|
<tr>
|
|
<td class="layui-td-gray-2">选择审批流程<font>*</font></td>
|
|
<td>
|
|
<select name="flow_id" lay-verify="required" lay-filter="flowtype" lay-reqText="请选择审批流程">
|
|
<option value="">--请选择--</option>
|
|
{volist name="flows" id="vo"}
|
|
<option value="{$vo.id}" title="{$vo.check_type}">{$vo.name}</option>
|
|
{/volist}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr id="flow_tr">
|
|
<td class="layui-td-gray">审核人<font>*</font></td>
|
|
<td>
|
|
<input type="text" name="check_admin_name" value="" autocomplete="off" placeholder="请选择审核人" lay-verify="required" lay-reqText="请选择审核人" class="layui-input picker-one" readonly><input type="hidden" name="check_admin_ids" value="" readonly>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="layui-td-gray">抄送人</td>
|
|
<td>
|
|
<input type="text" name="copy_names" value="" autocomplete="off" placeholder="请选择审核人" class="layui-input picker-more" readonly><input type="hidden" name="copy_uids" value="" readonly>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div style="padding: 10px 0">
|
|
<input type="hidden" name="id" value="{$id}">
|
|
<input type="hidden" name="type" value="{$type}">
|
|
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
|
|
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
|
|
</div>
|
|
<script>
|
|
|
|
// 查找指定的元素在数组中的位置
|
|
Array.prototype.indexOf = function (val) {
|
|
for (var i = 0; i < this.length; i++) {
|
|
if (this[i] == val) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
};
|
|
// 通过索引删除数组元素
|
|
Array.prototype.remove = function (val) {
|
|
var index = this.indexOf(val);
|
|
if (index > -1) {
|
|
this.splice(index, 1);
|
|
}
|
|
};
|
|
|
|
function flowStep(){
|
|
let tool=layui.tool,form = layui.form,upload = layui.upload,employeepicker = layui.employeepicker;
|
|
//选择单个员工弹窗
|
|
$('body').on('click','.picker-one',function () {
|
|
if($('[name="flow_id"]').val()==''){
|
|
layer.msg('请先选择审批流程');
|
|
return false;
|
|
}
|
|
let that = $(this);
|
|
let ids=that.next().val()+'',names = that.val()+'';
|
|
employeepicker.init({
|
|
ids:ids,
|
|
names:names,
|
|
type:0,
|
|
department_url: "/api/index/get_department_tree",
|
|
employee_url: "/api/index/get_employee",
|
|
callback:function(ids,names,dids,departments){
|
|
that.val(names);
|
|
that.next().val(ids);
|
|
}
|
|
});
|
|
});
|
|
|
|
//选择多个员工弹窗
|
|
$('body').on('click','.picker-more',function () {
|
|
let that = $(this);
|
|
let ids=that.next().val()+'',names = that.val()+'',ids_array=[],names_array=[];
|
|
if(ids.length>0){
|
|
ids_array=ids.split(',');
|
|
names_array=names.split(',');
|
|
}
|
|
employeepicker.init({
|
|
ids:ids_array,
|
|
names:names_array,
|
|
type:1,
|
|
department_url: "/api/index/get_department_tree",
|
|
employee_url: "/api/index/get_employee",
|
|
callback:function(ids,names,dids,departments){
|
|
that.val(names.join(','));
|
|
that.next().val(ids.join(','));
|
|
}
|
|
});
|
|
});
|
|
|
|
form.on('select(flowtype)', function(data){
|
|
var check_type = data.elem[data.elem.selectedIndex].title;
|
|
var formHtml='<td class="layui-td-gray">审核人<font>*</font></td>\
|
|
<td colspan="5">\
|
|
<input type="text" name="check_admin_name" value="" autocomplete="off" placeholder="请选择审核人" lay-verify="required" lay-reqText="请选择审核人" class="layui-input picker-one"><input type="hidden" name="check_admin_ids" value="">\
|
|
</td>';
|
|
if(check_type == 2){
|
|
$('#flow_tr').html(formHtml);
|
|
form.render();
|
|
}
|
|
if(data.value==''){
|
|
$('#flow_tr').html(formHtml);
|
|
$('[name="copy_names"]').val('');
|
|
$('[name="copy_uids"]').val('');
|
|
form.render();
|
|
return false;
|
|
}
|
|
$.ajax({
|
|
url: "/api/index/get_flow_users",
|
|
type:'get',
|
|
data:{id:data.value},
|
|
success: function (e) {
|
|
if (e.code == 0) {
|
|
var flowLi='';
|
|
var flow_data = e.data.flow_data;
|
|
if(e.data.copy_uids && e.data.copy_uids !=''){
|
|
$('[name="copy_names"]').val(e.data.copy_unames);
|
|
$('[name="copy_uids"]').val(e.data.copy_uids.split(','));
|
|
}
|
|
if(check_type == 1 || check_type == 3){
|
|
for(var a=0;a<flow_data.length;a++){
|
|
var userList='',sign_type = '';
|
|
if(check_type == 1){
|
|
if(flow_data[a].flow_type==1){
|
|
userList+= '<li style="padding:3px 0">当前部门负责人</li>';
|
|
}
|
|
else if(flow_data[a].flow_type==2){
|
|
userList+= '<li style="padding:3px 0">上级部门负责人</li>';
|
|
}
|
|
else{
|
|
if(flow_data[a].flow_type==3){
|
|
sign_type= ' <span class="layui-badge layui-bg-blue">或签</span>';
|
|
}
|
|
if(flow_data[a].flow_type==4){
|
|
sign_type= ' <span class="layui-badge layui-bg-blue">会签</span>';
|
|
}
|
|
for(var b=0;b<flow_data[a].user_id_info.length;b++){
|
|
userList+= '<li style="padding:3px 0"><img src="'+flow_data[a].user_id_info[b].thumb+'" style="width:24px; height:24px; border-radius:50%; margin-right:8px;" />'+flow_data[a].user_id_info[b].name+'</li>';
|
|
}
|
|
}
|
|
}
|
|
else if(check_type == 3){
|
|
sign_type= ' <span class="layui-badge layui-bg-blue">'+flow_data[a].flow_name+'</span>'
|
|
for(var b=0;b<flow_data[a].user_id_info.length;b++){
|
|
userList+= '<li style="padding:3px 0"><img src="'+flow_data[a].user_id_info[b].thumb+'" style="width:24px; height:24px; border-radius:50%; margin-right:8px;" />'+flow_data[a].user_id_info[b].name+'</li>';
|
|
}
|
|
}
|
|
flowLi+='<li class="layui-timeline-item">\
|
|
<i class="layui-icon layui-timeline-axis"></i>\
|
|
<div class="layui-timeline-content">\
|
|
<p class="layui-timeline-title"><strong>第'+(a+1)+'级审批</strong>'+sign_type+'</p>\
|
|
<ul>'+userList+'</ul>\
|
|
</div>\
|
|
</li>';
|
|
}
|
|
formHtml = '<td class="layui-td-gray">审批流程</td>\
|
|
<td colspan="7">\
|
|
<ul id="flowList" class="layui-timeline">'+flowLi+'</ul>\
|
|
</td>';
|
|
$('#flow_tr').html(formHtml);
|
|
}
|
|
}
|
|
}
|
|
})
|
|
});
|
|
//监听提交
|
|
form.on('submit(webform)', function(data){
|
|
$.ajax({
|
|
url: "/oa/approve/add",
|
|
type:'post',
|
|
data:data.field,
|
|
success: function (e) {
|
|
layer.msg(e.msg);
|
|
if (e.code == 0) {
|
|
tool.sideClose(1000);
|
|
}
|
|
}
|
|
})
|
|
return false;
|
|
});
|
|
|
|
|
|
$('#fileList').on('click', '.btn-delete', function () {
|
|
var _id = $(this).data('id');
|
|
var idsStr = $('#fileList input').val(),idsArray = [];
|
|
if (idsStr != '') {
|
|
idsArray = idsStr.split(",");
|
|
}
|
|
idsArray.remove(_id);
|
|
$('#fileList input').attr('value', idsArray.join(','));
|
|
$('#uploadImg' + _id).remove();
|
|
})
|
|
|
|
//多附件上传
|
|
upload.render({
|
|
elem: '#upFile'
|
|
,url: "/api/index/upload"
|
|
,multiple: true
|
|
,accept: 'file' //普通文件
|
|
,exts: 'png|jpg|gif|jpeg|doc|docx|ppt|pptx|xls|xlsx|pdf|zip|rar|7z' //只允许上传文件格式
|
|
,done: function(res){
|
|
layer.msg(res.msg);
|
|
if (res.code == 0) {
|
|
//上传成功
|
|
var idsStr = $('#fileList input').val(),idsArray = [];
|
|
if (idsStr != '') {
|
|
idsArray = idsStr.split(",");
|
|
}
|
|
idsArray.push(res.data.id);
|
|
$('#fileList input').attr('value', idsArray.join(','));
|
|
let temp = `<div class="layui-col-md3" id="uploadImg${res.data.id}">
|
|
<div class="file-card">
|
|
<i class="file-icon layui-icon layui-icon-file"></i>
|
|
<div class="file-title">${res.data.name}</div>
|
|
<div class="file-tool">
|
|
<a href="${res.data.filepath}" download="${res.data.name}" title="下载查看" target="_blank"><i class="layui-icon layui-icon-download-circle" style="color: #12bb37;"></i></a>
|
|
<i class="btn-delete layui-icon layui-icon-delete" data-id="${res.data.id}" style="color: #FF5722;" title="删除"></i>
|
|
</div>
|
|
</div>
|
|
</div>`;
|
|
$('#fileList').append(temp);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
</script>
|