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%; + } +}