feat: 圆角50%替换全局变量|颜色#999替换全局变量

This commit is contained in:
duanshuwen
2025-10-06 17:25:28 +08:00
parent 6f477f3513
commit dad5c4cc5e
12 changed files with 15 additions and 15 deletions

View File

@@ -80,7 +80,7 @@ $font-size-label: 10px;
justify-content: center; justify-content: center;
width: 32px; width: 32px;
height: 32px; height: 32px;
border-radius: 50%; border-radius: $uni-border-radius-circle;
transition: background-color 0.2s; transition: background-color 0.2s;
&:active { &:active {

View File

@@ -28,7 +28,7 @@
width: 24px; width: 24px;
height: 24px; height: 24px;
margin-right: 8px; margin-right: 8px;
border-radius: 50%; border-radius: $uni-border-radius-circle;
background-color: #ffa500; background-color: #ffa500;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@@ -15,7 +15,7 @@
.order-icon { .order-icon {
width: 20px; width: 20px;
height: 20px; height: 20px;
border-radius: 50%; border-radius: $uni-border-radius-circle;
background-color: #ffa500; background-color: #ffa500;
display: flex; display: flex;
align-items: center; align-items: center;
@@ -35,7 +35,7 @@
} }
.status-canceled { .status-canceled {
color: #999; color: $uni-text-color-grey;
border: 1px solid #999; border: 1px solid #999;
} }

View File

@@ -24,7 +24,7 @@
.sum-value { .sum-value {
font-size: $uni-font-size-base; font-size: $uni-font-size-base;
color: #999; color: $uni-text-color-grey;
} }
.sum-discount { .sum-discount {

View File

@@ -36,7 +36,7 @@
</template> </template>
<script setup> <script setup>
import { defineProps, defineExpose } from "vue"; import { defineProps } from "vue";
import Divider from "@/components/Divider/index.vue"; import Divider from "@/components/Divider/index.vue";
import OrderCardContent from "./OrderCardContent.vue"; import OrderCardContent from "./OrderCardContent.vue";
import serviceIcon from "./images/service.png"; import serviceIcon from "./images/service.png";

View File

@@ -165,7 +165,7 @@ $transition-normal: 0.3s ease;
margin: -8px 0 0 -8px; margin: -8px 0 0 -8px;
border: 2px solid transparent; border: 2px solid transparent;
border-top: 2px solid #fff; border-top: 2px solid #fff;
border-radius: 50%; border-radius: $uni-border-radius-circle;
animation: loading-spin 1s linear infinite; animation: loading-spin 1s linear infinite;
} }
} }

View File

@@ -16,7 +16,7 @@
top: -12rpx; top: -12rpx;
left: 24rpx; left: 24rpx;
font-size: 20rpx; font-size: 20rpx;
color: #999999; color: $uni-text-color-grey;
background-color: $uni-bg-color; background-color: $uni-bg-color;
padding: 0 8rpx; padding: 0 8rpx;
z-index: 1; z-index: 1;

View File

@@ -93,7 +93,7 @@
.price-desc { .price-desc {
font-size: $uni-font-size-base; font-size: $uni-font-size-base;
color: #999; color: $uni-text-color-grey;
font-weight: 400; font-weight: 400;
margin-left: 12px; margin-left: 12px;
} }
@@ -129,7 +129,7 @@
} }
.service-value { .service-value {
color: #999; color: $uni-text-color-grey;
} }
} }
} }

View File

@@ -27,7 +27,7 @@
.avatar-row .avatar { .avatar-row .avatar {
width: 80rpx; width: 80rpx;
height: 80rpx; height: 80rpx;
border-radius: 50%; border-radius: $uni-border-radius-circle;
} }
.label { .label {

View File

@@ -18,7 +18,7 @@
display: inline-block; display: inline-block;
width: 3px; width: 3px;
height: 3px; height: 3px;
border-radius: 50%; border-radius: $uni-border-radius-circle;
margin-right: 3px; margin-right: 3px;
background: #333333; background: #333333;
animation: wave 1.3s linear infinite; animation: wave 1.3s linear infinite;

View File

@@ -24,7 +24,7 @@
.label { .label {
font-size: 24rpx; font-size: 24rpx;
color: #999; color: $uni-text-color-grey;
} }
.date { .date {
font-size: 28rpx; font-size: 28rpx;
@@ -54,4 +54,4 @@
font-size: 22rpx; font-size: 22rpx;
color: #666; color: #666;
margin-top: 4rpx; margin-top: 4rpx;
} }

View File

@@ -32,7 +32,7 @@
&:hover { &:hover {
background: #f5f5f5; background: #f5f5f5;
border-radius: 50%; border-radius: $uni-border-radius-circle;
} }
} }
} }