feat: 订单详情布局功能调整

This commit is contained in:
duanshuwen
2025-10-29 21:08:35 +08:00
parent 89cf4f81cd
commit 2b9afb936e
23 changed files with 221 additions and 726 deletions

View File

@@ -66,7 +66,7 @@ const props = defineProps({
default: true,
},
// 背景颜色
backgroundColor: {
background: {
type: String,
default: "#d9eeff",
},
@@ -131,7 +131,7 @@ const navBarClass = computed(() => {
// 计算导航栏样式
const navBarStyle = computed(() => {
return {
backgroundColor: props.backgroundColor,
background: props.background,
zIndex: props.zIndex,
};
});