|
|
|
@ -184,7 +184,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<van-divider class="divdsty" /> |
|
|
|
<van-cell center title="受委托执法"> |
|
|
|
<van-cell center class="noborder" title="受委托执法" required> |
|
|
|
<template #right-icon> |
|
|
|
<van-radio-group v-model="data.auth_checked" shape="square" direction="horizontal"> |
|
|
|
<van-radio name="0">否</van-radio> |
|
|
|
@ -192,6 +192,7 @@ |
|
|
|
</van-radio-group> |
|
|
|
</template> |
|
|
|
</van-cell> |
|
|
|
<div class="tip-txt">本次执法是否为受委托事项</div> |
|
|
|
<view v-if="data.auth_checked=='1'"> |
|
|
|
<van-field |
|
|
|
v-model="submitData.entrustDeptName" |
|
|
|
@ -214,7 +215,7 @@ |
|
|
|
<div class="addbtn" @click.stop="data.deptChecked=true"><van-icon name="add-o" /></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- <van-divider class="divdsty"/>--> |
|
|
|
<van-divider class="divdsty"/> |
|
|
|
|
|
|
|
<div class="file-upload"> |
|
|
|
<div class="file-upload-center"> |
|
|
|
@ -1526,4 +1527,28 @@ |
|
|
|
margin-left: -0.2rem; |
|
|
|
} |
|
|
|
|
|
|
|
.tip-txt { |
|
|
|
position: relative; |
|
|
|
margin: 1% var(--van-padding-md) 0; |
|
|
|
padding-bottom: 0.25rem; |
|
|
|
color: #999; |
|
|
|
font-size: 0.3rem; |
|
|
|
text-align: right; |
|
|
|
} |
|
|
|
|
|
|
|
.tip-txt:after { |
|
|
|
position: absolute; |
|
|
|
box-sizing: border-box; |
|
|
|
content: " "; |
|
|
|
pointer-events: none; |
|
|
|
left: 0; |
|
|
|
bottom: 0; |
|
|
|
width: 100%; |
|
|
|
border-bottom: 1px solid #ebedf0; |
|
|
|
transform: scaleY(.5); |
|
|
|
} |
|
|
|
|
|
|
|
.noborder:after { |
|
|
|
border: 0 !important; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|