|
@@ -4,23 +4,11 @@
|
|
|
<div class="title-box">
|
|
|
<el-form :model="queryParams" class="form-box" ref="queryForm" :inline="true" label-width="70px">
|
|
|
<div class="form-button-max-big-box">
|
|
|
- <div class="form-button-big-box">
|
|
|
- <div :class="queryParams.rectifyStatus===''?'checkDiv':''" @click="topLeftClickType('')">
|
|
|
- <p class="text-p">全部</p>
|
|
|
- <p class="el-icon-check icon-p" v-if="queryParams.rectifyStatus===''"></p>
|
|
|
- </div>
|
|
|
- <div :class="queryParams.rectifyStatus===0?'checkDiv':''" @click="topLeftClickType(0)">
|
|
|
- <p class="text-p">待整改</p>
|
|
|
- <p class="el-icon-check icon-p" v-if="queryParams.rectifyStatus===0"></p>
|
|
|
- </div>
|
|
|
- <div :class="queryParams.rectifyStatus===1?'checkDiv':''" @click="topLeftClickType(1)">
|
|
|
- <p class="text-p">已整改</p>
|
|
|
- <p class="el-icon-check icon-p" v-if="queryParams.rectifyStatus===1"></p>
|
|
|
- </div>
|
|
|
- <div :class="queryParams.rectifyStatus===2?'checkDiv':''" @click="topLeftClickType(2)">
|
|
|
- <p class="text-p">暂无法整改</p>
|
|
|
- <p class="el-icon-check icon-p" v-if="queryParams.rectifyStatus===2"></p>
|
|
|
- </div>
|
|
|
+ <div class="form-button-big-box" style="margin-left:10px;">
|
|
|
+ <p class="text-p" :class="queryParams.rectifyStatus==''?'checkDiv':''" @click="topLeftClickType('')">全部</p>
|
|
|
+ <p class="text-p" :class="queryParams.rectifyStatus=='0'?'checkDiv':''" @click="topLeftClickType('0')">待整改</p>
|
|
|
+ <p class="text-p" :class="queryParams.rectifyStatus=='1'?'checkDiv':''" @click="topLeftClickType('1')">已整改</p>
|
|
|
+ <p class="text-p" :class="queryParams.rectifyStatus=='2'?'checkDiv':''" @click="topLeftClickType('2')">暂无法整改</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!--与我相关-->
|
|
@@ -506,37 +494,45 @@
|
|
|
border-bottom:1px solid #dedede;
|
|
|
.form-button-max-big-box{
|
|
|
display: inline-block;
|
|
|
+ margin-left:10px;
|
|
|
.form-button-big-box{
|
|
|
display: flex;
|
|
|
- div{
|
|
|
- position: relative;
|
|
|
+ p:nth-child(1){
|
|
|
+ border-top-left-radius: 4px;
|
|
|
+ border-bottom-left-radius: 4px;
|
|
|
+ border-top:1px solid #E0E0E0;
|
|
|
+ border-bottom:1px solid #E0E0E0;
|
|
|
+ }
|
|
|
+ p:nth-child(2){
|
|
|
+ border-top:1px solid #E0E0E0;
|
|
|
+ border-bottom:1px solid #E0E0E0;
|
|
|
+ }
|
|
|
+ p:nth-child(3){
|
|
|
+ border-top:1px solid #E0E0E0;
|
|
|
+ border-bottom:1px solid #E0E0E0;
|
|
|
+ }
|
|
|
+ p:nth-child(4){
|
|
|
+ border-top-right-radius: 4px;
|
|
|
+ border-bottom-right-radius: 4px;
|
|
|
+ border-top:1px solid #E0E0E0;
|
|
|
+ border-bottom:1px solid #E0E0E0;
|
|
|
+ border-right:1px solid #E0E0E0;
|
|
|
+ }
|
|
|
+ p{
|
|
|
height:40px;
|
|
|
width:80px;
|
|
|
line-height: 40px;
|
|
|
text-align: center;
|
|
|
- color:#999;
|
|
|
+ color:#666666;
|
|
|
font-size:14px;
|
|
|
- border:1px solid #999;
|
|
|
- border-radius:4px;
|
|
|
- margin-left:10px;
|
|
|
font-weight:500;
|
|
|
cursor: pointer;
|
|
|
- .icon-p{
|
|
|
- width:15px;
|
|
|
- height:15px;
|
|
|
- line-height:15px;
|
|
|
- text-align: center;
|
|
|
- position: absolute;
|
|
|
- right:0;
|
|
|
- bottom:0;
|
|
|
- color:#fff;
|
|
|
- background: #0183fa;
|
|
|
- border-top-left-radius:4px;
|
|
|
- }
|
|
|
+ border-left:1px solid #E0E0E0;
|
|
|
}
|
|
|
.checkDiv{
|
|
|
- color:#0183FA;
|
|
|
- border:1px solid #0183FA;
|
|
|
+ color:#fff!important;
|
|
|
+ border:1px solid #0183FA!important;
|
|
|
+ background-color: #0183FA;
|
|
|
}
|
|
|
}
|
|
|
}
|