From 5aef1b83ccdce0c334eac00f376510c2c20c0b5d Mon Sep 17 00:00:00 2001
From: jscyl13849007907 <13849007907@163.com>
Date: Sat, 30 May 2026 10:47:37 +0800
Subject: [PATCH] no message
---
root/merchantManagement/dynamicNotice.vue | 58 ++++++++++++++++++++++++++-----
1 file changed, 50 insertions(+), 8 deletions(-)
diff --git a/root/merchantManagement/dynamicNotice.vue b/root/merchantManagement/dynamicNotice.vue
index c9aa8a4..b53bb6d 100644
--- a/root/merchantManagement/dynamicNotice.vue
+++ b/root/merchantManagement/dynamicNotice.vue
@@ -14,7 +14,7 @@
-
+
{
+ this.G.Put(this.api.merchantManagement_updateField, {
+ fieldName: "notice",
+ fieldValue: this.noticList[0]
+ }, () => {
that.isSubmit = false;
uni.showToast({
@@ -174,5 +183,38 @@ export default {
border-radius: 8px;
}
}
+ .color-item {
+ position: relative;
+ transition: all 0.2s ease;
+ &::after {
+ content: '';
+ position: absolute;
+ top: -4px;
+ left: -4px;
+ right: -4px;
+ bottom: -4px;
+ border-radius: 12px;
+ border: 2px solid transparent;
+ transition: all 0.2s ease;
+ }
+ }
+ .color-item-selected {
+ transform: scale(1.1);
+ &::after {
+ border-color: #999;
+ }
+ animation: selectedPulse 0.3s ease;
+ }
+}
+@keyframes selectedPulse {
+ 0% {
+ transform: scale(1);
+ }
+ 50% {
+ transform: scale(1.15);
+ }
+ 100% {
+ transform: scale(1.1);
+ }
}