GZMachinesWeb/WebContent/WEB-INF/views/demandPlan/child/showProcess.jsp

83 lines
1.6 KiB
Plaintext
Raw Normal View History

2025-06-20 17:47:53 +08:00
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html >
<html lang="en">
<head>
<%@include file="../../baseset.jsp"%>
<%@include file="../../systemset.jsp"%>
<style type="text/css">
body {
width: 100% !important;
height: 100% !important;
display: flex;
justify-content: space-evenly;
align-items: center;
padding: 20% 5% 20% 5%;
box-sizing:border-box;
}
.box-content {
width: 100%;
height: 50px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
img {
width: 32px;
height: 32px;
}
.circle {
width: 50px;
height: 50px;
background-color: #66B1FF;
border-radius: 50%;
}
.rectangle {
width: 160px;
height: 50px;
background-color: #66B1FF;
border-radius: 6px;
}
.rectangle span, .circle span {
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
letter-spacing: 1px;
}
</style>
</head>
<body>
<div class="box-content">
<div class="circle">
<span>开始</span>
</div>
<img src="${bonuspath}/static/img/progress_icon.png">
<div class="rectangle">
<span>项目部发起申请</span>
</div>
<img src="${bonuspath}/static/img/progress_icon.png">
<div class="rectangle">
<span>分公司审核</span>
</div>
<img src="${bonuspath}/static/img/progress_icon.png">
<div class="rectangle">
<span>项管中心审核</span>
</div>
<img src="${bonuspath}/static/img/progress_icon.png">
<div class="rectangle">
<span>机具公司确认并出库</span>
</div>
<img src="${bonuspath}/static/img/progress_icon.png">
<div class="circle">
<span>结束</span>
</div>
</div>
</body>
</html>