dhy
parent
619b9cf3b1
commit
b7bf4efe24
After Width: | Height: | Size: 838 B |
After Width: | Height: | Size: 745 B |
@ -1,7 +1,158 @@
|
||||
<template></template>
|
||||
<template>
|
||||
<div>
|
||||
<div>
|
||||
<div class="title">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="subtitle">安全生产摸排</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="search-gr">
|
||||
<div class="btn-reset">
|
||||
<div class="icon-reset"></div>
|
||||
<span class="text">重置</span>
|
||||
</div>
|
||||
<div class="btn-search">
|
||||
<div class="icon-search"></div>
|
||||
<span class="text">查询</span>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="tb-header">
|
||||
<span>执法人员</span>
|
||||
<span>网格</span>
|
||||
<span>安全生产排查日期</span>
|
||||
<span>是否发现隐患</span>
|
||||
<span>是否发起整改工单</span>
|
||||
</div>
|
||||
<div class="tb-content">
|
||||
<span>张天</span>
|
||||
<span>网格1</span>
|
||||
<span>2023-09-12</span>
|
||||
<span>否</span>
|
||||
<span>否</span>
|
||||
</div>
|
||||
<div class="tb-content_">
|
||||
<span>张天</span>
|
||||
<span>网格1</span>
|
||||
<span>2023-09-12</span>
|
||||
<span>否</span>
|
||||
<span>否</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {};
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
<style lang="scss" scoped>
|
||||
.title {
|
||||
margin-bottom: 14px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.icon-bar {
|
||||
width: 4px;
|
||||
height: 12px;
|
||||
background-color: #5ba1d2;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans-Medium, Source Han Sans;
|
||||
color: #e9f4ff;
|
||||
}
|
||||
}
|
||||
|
||||
.search-gr {
|
||||
display: flex;
|
||||
margin: 10px 64px;
|
||||
.btn-reset {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-radius: 2px 2px 2px 2px;
|
||||
border: 1px solid rgba(181, 207, 255, 0.5);
|
||||
.icon-reset {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
background-image: url("../../../../assets/images/icon-reset.png");
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans-Regular, Source Han Sans;
|
||||
color: #d3eef2;
|
||||
}
|
||||
}
|
||||
.btn-search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 4px 16px;
|
||||
background: rgba(255, 125, 64, 0.8);
|
||||
box-shadow: inset 0px 0px 13px 0px #f6b463;
|
||||
border-radius: 2px 2px 2px 2px;
|
||||
border: 1px solid rgba(181, 207, 255, 0.5);
|
||||
.icon-search {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
background-image: url("../../../../assets/images/icon-search.png");
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans-Regular, Source Han Sans;
|
||||
color: #d3eef2;
|
||||
}
|
||||
}
|
||||
}
|
||||
.tb-header {
|
||||
width: 100%;
|
||||
background: rgba(7, 127, 255, 0.1608);
|
||||
display: flex;
|
||||
border-top: 1px solid #077fff;
|
||||
padding: 10px 20px;
|
||||
span {
|
||||
flex: 1;
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans-Regular, Source Han Sans;
|
||||
font-weight: 400;
|
||||
color: #d3eef2;
|
||||
}
|
||||
}
|
||||
|
||||
.tb-content {
|
||||
width: 100%;
|
||||
background: rgba(216, 216, 216, 0.1);
|
||||
display: flex;
|
||||
padding: 10px 20px;
|
||||
span {
|
||||
flex: 1;
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans-Regular, Source Han Sans;
|
||||
font-weight: 400;
|
||||
color: #d3eef2;
|
||||
}
|
||||
}
|
||||
.tb-content_ {
|
||||
width: 100%;
|
||||
background: rgba(216, 216, 216, 0.3);
|
||||
display: flex;
|
||||
padding: 10px 20px;
|
||||
span {
|
||||
flex: 1;
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans-Regular, Source Han Sans;
|
||||
font-weight: 400;
|
||||
color: #d3eef2;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in new issue