86 lines
2.0 KiB
HTML
86 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>查看审核流程</title>
|
|
</head>
|
|
<style type="text/css">
|
|
body {
|
|
width: 98% !important;
|
|
height: 100% !important;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
padding: 16% 5% 16% 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>
|
|
|
|
<body>
|
|
<div class="box-content">
|
|
<div class="circle">
|
|
<span>开始</span>
|
|
</div>
|
|
<img src="../../../images/demandPlan/progress_icon.png">
|
|
<div class="rectangle">
|
|
<span>项目部发起申请</span>
|
|
</div>
|
|
<img src="../../../images/demandPlan/progress_icon.png">
|
|
<div class="rectangle">
|
|
<span>分公司审核</span>
|
|
</div>
|
|
<img src="../../../images/demandPlan/progress_icon.png">
|
|
<div class="rectangle">
|
|
<span>项管中心审核</span>
|
|
</div>
|
|
<img src="../../../images/demandPlan/progress_icon.png">
|
|
<div class="rectangle">
|
|
<span>机具公司确认并出库</span>
|
|
</div>
|
|
<img src="../../../images/demandPlan/progress_icon.png">
|
|
<div class="circle">
|
|
<span>结束</span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |