From 3d11c9abe2ab092ca713cb2e54418700ddb81e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Thu, 13 Mar 2025 18:40:50 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E5=90=88=E6=90=AD=E9=85=8D=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/data-filter/index.vue | 2 +- src/components/model-binding/index.vue | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/components/common/data-filter/index.vue b/src/components/common/data-filter/index.vue index 82c96220..30d2370f 100644 --- a/src/components/common/data-filter/index.vue +++ b/src/components/common/data-filter/index.vue @@ -113,7 +113,7 @@
- +
diff --git a/src/components/model-binding/index.vue b/src/components/model-binding/index.vue index 1f68c741..cdea99a4 100644 --- a/src/components/model-binding/index.vue +++ b/src/components/model-binding/index.vue @@ -28,7 +28,7 @@ {{ match_item.estimate_price }}
- +
{{ match_item.estimate_discount_price || 0 }} @@ -53,7 +53,7 @@ {{ match_item.estimate_price }}
- +
{{ match_item.estimate_discount_price || 0 }} @@ -519,4 +519,18 @@ watchEffect(() => { width: 100%; height: 100%; } +.discount-icon { + animation: gradient 5s ease infinite; +} +@keyframes gradient { + 0% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } + 100% { + background-position: 0% 50%; + } +}