You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
238 lines
11 KiB
238 lines
11 KiB
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>任务审批</title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" href="/static/lib/layui-v2.6.3/css/layui.css" media="all">
|
|
<link rel="stylesheet" href="/static/css/public.css" media="all">
|
|
<link rel="stylesheet" href="/static/js/lay-module/step-lay/step.css" media="all">
|
|
</head>
|
|
<body>
|
|
<div class="layuimini-container">
|
|
<div class="layuimini-main">
|
|
<div class="layui-fluid">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body" style="padding-top: 40px;">
|
|
<div id="stepForm" lay-filter="stepForm" style="margin: 0 auto;">
|
|
<div style="margin-top: 30px">
|
|
<table id="demo" class="layui-table"
|
|
style="margin: 0 auto;max-width: 800px;padding-top: 40px;">
|
|
<colgroup>
|
|
<col width="150">
|
|
<col width="200">
|
|
<col>
|
|
</colgroup>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>申请编号</td>
|
|
<td id="id" th:text="${record.getId()}">123456</td>
|
|
</tr>
|
|
<tr>
|
|
<td>材料名称</td>
|
|
<td id="materialName" th:text="${record.getMname()}">骁龙888芯片</td>
|
|
</tr>
|
|
<tr>
|
|
<td>仓库名称</td>
|
|
<td id="depositoryName" th:text="${record.getDepositoryName()}">外芯仓库</td>
|
|
</tr>
|
|
<tr>
|
|
<td>数量</td>
|
|
<td id="quantity" th:text="${record.getQuantity()}">数量</td>
|
|
</tr>
|
|
<tr>
|
|
<td>金额</td>
|
|
<td id="price" th:text="${record.getPrice()}">金额</td>
|
|
</tr>
|
|
<tr>
|
|
<td>状态</td>
|
|
<td id="state" th:text="${record.getState()}">状态</td>
|
|
</tr>
|
|
<tr>
|
|
<td>申请人</td>
|
|
<td id="applicantName" th:text="${record.getApplicantName()}">申请人</td>
|
|
</tr>
|
|
<tr>
|
|
<td>请求提交时间</td>
|
|
<td id="applicantTime" th:text="${record.getApplicantTime() }">1970-01-01 08:00:00</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>申请备注</td>
|
|
<td id="applyRemarks" th:text="${record.getApplyRemark()}">申请备注</td>
|
|
</tr>
|
|
<tr>
|
|
<td>部门负责人</td>
|
|
<td id="departmentheadName" th:text="${record.getDepartmentheadName()}">部门负责人</td>
|
|
</tr>
|
|
<tr id="departmentheadMessageT" style="display: none">
|
|
<td>审核意见</td>
|
|
<td id="departmentheadMessage" th:text="${record.getDepartmentheadMessage()}">审核意见</td>
|
|
</tr>
|
|
<tr id="departmentheadTimeT" style="display: none">
|
|
<td>审核时间</td>
|
|
<td id="departmentheadTime" th:text="${record.getDepartmentheadTime().equals('1970-01-01 08:00:00')?'':record.getDepartmentheadTime()}">1970-01-01 08:00:00</td>
|
|
</tr>
|
|
<tr id="depositoryManagerNameT" style="display: none">
|
|
<td>仓库管理员</td>
|
|
<td id="depositoryManagerName" th:text="${record.getDepositoryManagerName()}">仓库管理员</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div id="review">
|
|
<div class="layui-form" style="margin: 0 auto;max-width: 900px;padding-top: 40px;">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">审核备注:</label>
|
|
<div class="layui-input-block">
|
|
<textarea id="departmentheadMessageF" name="departmentheadMessage" placeholder="请填写相关原因及申请原因" value="" class="layui-textarea"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-form-item">
|
|
<div class="layui-input-block">
|
|
<button id="reviewPass1" class="layui-btn" onclick="review(1)">
|
|
 审核通过 
|
|
</button>
|
|
<button class="layui-btn layui-btn-danger" onclick="review(2)">
|
|
 审核不通过 
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="check" style="display: none">
|
|
<div class="layui-form" style="margin: 0 auto;max-width: 900px;padding-top: 40px;">
|
|
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">验收备注:</label>
|
|
<div class="layui-input-block">
|
|
<textarea id="depositoryManagerMessageF" name="depositoryManagerMessage" placeholder="请填写相关原因及申请原因" value="" class="layui-textarea"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-form-item">
|
|
<div class="layui-input-block">
|
|
<button id="checkPass1" class="layui-btn" onclick="check(1)">
|
|
 审核通过 
|
|
</button>
|
|
<button id="checkPass2" class="layui-btn layui-btn-danger" onclick="check(2)">
|
|
 审核不通过 
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
<div class="layui-card-body" style="padding-top: 40px;">
|
|
<div style="color: #666;margin-top: 30px;margin-bottom: 40px;padding-left: 30px;">
|
|
<h3>说明</h3><br>
|
|
申请提交后,24小时内审核完毕
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<script src="/static/lib/layui-v2.6.3/layui.js" charset="utf-8"></script>
|
|
<script src="/static/js/lay-config.js?v=1.0.4" charset="utf-8"></script>
|
|
<script>
|
|
function check(){}
|
|
function review(){}
|
|
layui.use(['form', 'step'], function () {
|
|
var $ = layui.$,
|
|
form = layui.form,
|
|
step = layui.step;
|
|
|
|
var state=$("#state").text();
|
|
//当前处于的状态
|
|
var position=0,states={};
|
|
if (state === "待部门负责人审核" || state === "部门负责人审核未通过") {
|
|
position = 1;
|
|
states = [{title: "提交申请"}, {title: state}, {title: "未入库"}];
|
|
} else {
|
|
position = 2;
|
|
states = [{title: "提交申请"}, {title: "审核通过"}, {title: state}];
|
|
}
|
|
step.render({
|
|
elem: '#stepForm',
|
|
filter: 'stepForm',
|
|
width: '100%', //设置容器宽度
|
|
stepWidth: '750px',
|
|
height: '650px',
|
|
position: position,
|
|
stepItems: states
|
|
});
|
|
|
|
let departmentheadTime=$("#departmentheadTime").text();
|
|
if (departmentheadTime!=null&&departmentheadTime!==""){
|
|
$("#departmentheadTimeT").show();
|
|
$("#departmentheadMessageT").show();
|
|
$("#depositoryManagerNameT").show();
|
|
$("#review").hide();
|
|
$("#check").show();
|
|
}
|
|
review=function (pass) {
|
|
let data={};
|
|
data.id=$("#id").text();
|
|
if (pass == 1){
|
|
data.departmentheadPass=1;
|
|
}else {
|
|
data.departmentheadPass=2;
|
|
}
|
|
data.departmentheadMessage=$("#departmentheadMessageF").val();
|
|
send(data);
|
|
}
|
|
check=function(pass) {
|
|
let data={};
|
|
data.id=$("#id").text();
|
|
if (pass == 1){
|
|
data.depositoryManagerPass=1;
|
|
}else {
|
|
data.depositoryManagerPass=2;
|
|
}
|
|
data.depositoryManagerMessage=$("#depositoryManagerMessageF").val();
|
|
send(data);
|
|
}
|
|
function send(req) {
|
|
console.log(JSON.stringify(req));
|
|
$.ajax({
|
|
url:"/depositoryRecord/review",
|
|
type:'put',
|
|
dataType:'json',
|
|
contentType: "application/json;charset=utf-8",
|
|
data:JSON.stringify(req),
|
|
beforeSend:function () {
|
|
this.layerIndex = layer.load(0, { shade: [0.5, '#393D49'] });
|
|
},
|
|
success:function(data){
|
|
layer.close(this.layerIndex);
|
|
if(data.status >= 300){
|
|
layer.msg(data.statusInfo.message);//失败的表情
|
|
return;
|
|
}else{
|
|
layer.msg("提交成功", {
|
|
icon: 6,//成功的表情
|
|
time: 500 //1秒关闭(如果不配置,默认是3秒)
|
|
}, function(){
|
|
window.location = '/ApplicationOutView?id='+req.id;
|
|
});
|
|
}
|
|
},
|
|
})
|
|
}
|
|
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|