|
|
|
@ -205,12 +205,14 @@ |
|
|
|
<!-- />--> |
|
|
|
<div class="add-inspect" v-if="data.checked"> |
|
|
|
<!-- <p v-if="submitData.userObjs.length > 0"><label>联合检查部门+人员</label></p> --> |
|
|
|
<p v-for="(item, index) in submitData.userObjs" :key="index"> |
|
|
|
<span class="add-dept">{{item.zzDisplayPath}}</span><span class="add-name">{{nameCorrect(item.userName)}}</span> |
|
|
|
<span class="add-law">{{item.lawCertificateNum}}</span> |
|
|
|
<van-icon class="remove-v" name="close" style="color: red;" |
|
|
|
@click.stop="removeDeptAndUser(index)" /> |
|
|
|
</p> |
|
|
|
<div class="add-inspect-item" v-for="(item, index) in submitData.userObjs" :key="index"> |
|
|
|
<p> |
|
|
|
<span class="add-name">{{nameCorrect(item.userName)}}</span> |
|
|
|
<span class="add-law">{{item.lawCertificateNum}}</span> |
|
|
|
</p> |
|
|
|
<span class="add-dept">{{item.zzDisplayPath}}</span> |
|
|
|
<van-icon class="remove-v" name="cross" @click.stop="removeDeptAndUser(index)" /> |
|
|
|
</div> |
|
|
|
<div class="addbtn" @click.stop="data.deptChecked=true"><van-icon name="add-o" /></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
@ -881,22 +883,41 @@ |
|
|
|
color: #323233; |
|
|
|
} |
|
|
|
|
|
|
|
.add-inspect p { |
|
|
|
.add-inspect-item { |
|
|
|
position: relative; |
|
|
|
margin: 0.1rem 0; |
|
|
|
padding: 0.2rem 0.1rem; |
|
|
|
background-color: #f3f4f5; |
|
|
|
//border-bottom: 1px solid #f4f5f6; |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
|
|
|
|
/*.add-inspect p:nth-child(1) { |
|
|
|
background-color: #fff; |
|
|
|
}*/ |
|
|
|
.add-inspect-item i.van-icon-cross { |
|
|
|
position: absolute; |
|
|
|
top: -0.45rem; |
|
|
|
right: -0.45rem; |
|
|
|
color: #fff; |
|
|
|
width: 0.95rem; |
|
|
|
height: 0.95rem; |
|
|
|
background: rgba(0, 0, 0, .5); |
|
|
|
border-radius: 50%; |
|
|
|
} |
|
|
|
|
|
|
|
.add-inspect-item i.van-icon-cross:before { |
|
|
|
position: absolute; |
|
|
|
left: 0.15rem; |
|
|
|
bottom: 0.12rem; |
|
|
|
font-size: 0.3rem; |
|
|
|
} |
|
|
|
|
|
|
|
.add-inspect-item p { |
|
|
|
display: flex; |
|
|
|
margin: 0 0 0.1rem 0; |
|
|
|
} |
|
|
|
|
|
|
|
.add-inspect span { |
|
|
|
display: block; |
|
|
|
margin-right: 0.2rem; |
|
|
|
color: #666; |
|
|
|
line-height: 1.75; |
|
|
|
} |
|
|
|
|
|
|
|
.add-inspect span.add-dept { |
|
|
|
|