From e2c7950e5f37c50aeedd1eba516ea8bf87818a55 Mon Sep 17 00:00:00 2001 From: linbin <495561397@qq.com> Date: Fri, 3 Oct 2025 01:23:08 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=BC=E8=BF=B0:=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=88=86=E9=94=80=E5=95=86=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BA=A4=E4=BA=92=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在分销商审核列表中,为通过和拒绝按钮添加确认弹窗功能 - 添加禁用分销商时的确认弹窗和原因输入 - 完善分销商状态显示逻辑,统一待审核状态样式 - 添加弹窗样式和交互脚本,提升用户体验 --- 商家端web/品牌管理/分销商管理.html | 233 ++++++++++++++++++++++++++--- 1 file changed, 213 insertions(+), 20 deletions(-) diff --git a/商家端web/品牌管理/分销商管理.html b/商家端web/品牌管理/分销商管理.html index df1f1cf..90a04d1 100644 --- a/商家端web/品牌管理/分销商管理.html +++ b/商家端web/品牌管理/分销商管理.html @@ -303,6 +303,80 @@ grid-template-columns: 1fr; } } + + /* 弹窗样式 */ + .modal { + display: none; + position: fixed; + z-index: 1000; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + } + + .modal.show { + display: flex; + align-items: center; + justify-content: center; + } + + .modal-content { + background-color: white; + padding: 0; + border-radius: 8px; + width: 90%; + max-width: 500px; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); + } + + .modal-header { + padding: 20px 24px; + border-bottom: 1px solid #f0f0f0; + } + + .modal-title { + font-size: 18px; + font-weight: 600; + color: #262626; + } + + .modal-body { + padding: 24px; + } + + .modal-body p { + margin: 0; + font-size: 14px; + color: #666; + line-height: 1.6; + } + + .modal-body textarea { + width: 100%; + min-height: 80px; + padding: 12px; + border: 1px solid #ddd; + border-radius: 6px; + font-size: 14px; + margin-top: 12px; + resize: vertical; + } + + .modal-body textarea:focus { + outline: none; + border-color: #1890ff; + box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2); + } + + .modal-footer { + padding: 16px 24px; + border-top: 1px solid #f0f0f0; + display: flex; + justify-content: flex-end; + gap: 12px; + } @@ -329,7 +403,6 @@ @@ -366,8 +439,8 @@ 待审核 - - - + + @@ -378,19 +451,20 @@ 待审核 - - - + + 王五 13800138003 2024-01-17 09:15:00 - 2024-01-17 16:20:00 - 已通过 + - + 待审核 - - + + @@ -401,7 +475,7 @@ 已拒绝 资料不完整 - + @@ -412,19 +486,20 @@ 待审核 - - - + + 孙八 13800138006 2024-01-20 13:25:00 - 2024-01-20 17:10:00 - 已通过 + - + 待审核 - - + + @@ -536,7 +611,7 @@ - - + @@ -549,7 +624,7 @@ - - + @@ -562,7 +637,7 @@ - - + @@ -588,7 +663,7 @@ - - + @@ -601,7 +676,7 @@ - - + @@ -614,7 +689,7 @@ - - + @@ -641,7 +716,59 @@ + + + + + + + + +