Browse Source

1.修改样式:开始-结束时间选择(预告)

2.添加受委托执法的提示(执法登记)
v4
meizf 12 months ago
parent
commit
be90ab109c
  1. 23
      src/views/administrative/appointmentBase.vue
  2. 29
      src/views/enforce/sign.vue

23
src/views/administrative/appointmentBase.vue

@ -213,4 +213,27 @@
height: 0.06rem;
}
/*** 时间选择组件 ****/
/deep/ .van-picker__columns {
position: relative;
display: flex;
padding-top: 5%;
border-top: 1px solid #f3f4f5;
}
/deep/ .van-picker-column__item--selected {
background: rgba(0,0,0,.1);
color: #000;
font-weight: 600;
}
/deep/ .van-picker-column__item--disabled {
cursor: not-allowed;
opacity: 1;
}
/deep/ .van-picker__frame {
transform: translateY(-30%);
}
/***/
</style>

29
src/views/enforce/sign.vue

@ -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>

Loading…
Cancel
Save