From be90ab109c0bd8f19b54747d84acc4bd1479b3c1 Mon Sep 17 00:00:00 2001 From: meizf <48540969@qq.com> Date: Thu, 18 Sep 2025 11:30:59 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F=EF=BC=9A?= =?UTF-8?q?=E5=BC=80=E5=A7=8B-=E7=BB=93=E6=9D=9F=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E9=80=89=E6=8B=A9=EF=BC=88=E9=A2=84=E5=91=8A=EF=BC=89=202.?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8F=97=E5=A7=94=E6=89=98=E6=89=A7=E6=B3=95?= =?UTF-8?q?=E7=9A=84=E6=8F=90=E7=A4=BA=EF=BC=88=E6=89=A7=E6=B3=95=E7=99=BB?= =?UTF-8?q?=E8=AE=B0=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/administrative/appointmentBase.vue | 23 ++++++++++++++++ src/views/enforce/sign.vue | 29 ++++++++++++++++++-- 2 files changed, 50 insertions(+), 2 deletions(-) diff --git a/src/views/administrative/appointmentBase.vue b/src/views/administrative/appointmentBase.vue index 815870e..07167a6 100644 --- a/src/views/administrative/appointmentBase.vue +++ b/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%); + } +/***/ \ No newline at end of file diff --git a/src/views/enforce/sign.vue b/src/views/enforce/sign.vue index 36cfca4..4accdc6 100644 --- a/src/views/enforce/sign.vue +++ b/src/views/enforce/sign.vue @@ -184,7 +184,7 @@ - + +
本次执法是否为受委托事项
- +
@@ -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; + }