This commit is contained in:
zoujiandong
2025-07-25 08:41:38 +08:00
parent 0b7edc39d4
commit 53d8455890
27 changed files with 594 additions and 336 deletions
+85 -85
View File
@@ -12842,6 +12842,74 @@ const props$u = defineMixin({
}
});
const props$t = defineMixin({
props: {
// 标题
title: {
type: [String, Number],
default: () => props$B.stepsItem.title
},
// 描述文本
desc: {
type: [String, Number],
default: () => props$B.stepsItem.desc
},
// 图标大小
iconSize: {
type: [String, Number],
default: () => props$B.stepsItem.iconSize
},
// 当前步骤是否处于失败状态
error: {
type: Boolean,
default: () => props$B.stepsItem.error
},
// 自定义样式
itemStyle: {
type: [Object],
default: {}
}
}
});
const props$s = defineMixin({
props: {
// 排列方向
direction: {
type: String,
default: () => props$B.steps.direction
},
// 设置第几个步骤
current: {
type: [String, Number],
default: () => props$B.steps.current
},
// 激活状态颜色
activeColor: {
type: String,
default: () => props$B.steps.activeColor
},
// 未激活状态颜色
inactiveColor: {
type: String,
default: () => props$B.steps.inactiveColor
},
// 激活状态的图标
activeIcon: {
type: String,
default: () => props$B.steps.activeIcon
},
// 未激活状态图标
inactiveIcon: {
type: String,
default: () => props$B.steps.inactiveIcon
},
// 是否显示点类型
dot: {
type: Boolean,
default: () => props$B.steps.dot
}
}
});
const props$r = defineMixin({
props: {
// radio的名称
name: {
@@ -12910,7 +12978,7 @@ const props$t = defineMixin({
}
}
});
const props$s = defineMixin({
const props$q = defineMixin({
props: {
// 绑定的值
modelValue: {
@@ -12999,7 +13067,7 @@ const props$s = defineMixin({
}
}
});
const props$r = defineMixin({
const props$p = defineMixin({
props: {
// 当前选中项的value值
modelValue: {
@@ -13035,7 +13103,7 @@ const props$r = defineMixin({
}
}
});
const props$q = defineMixin({
const props$o = defineMixin({
props: {
// 菜单标题和选项的激活态颜色
activeColor: {
@@ -13094,74 +13162,6 @@ const props$q = defineMixin({
}
}
});
const props$p = defineMixin({
props: {
// 标题
title: {
type: [String, Number],
default: () => props$B.stepsItem.title
},
// 描述文本
desc: {
type: [String, Number],
default: () => props$B.stepsItem.desc
},
// 图标大小
iconSize: {
type: [String, Number],
default: () => props$B.stepsItem.iconSize
},
// 当前步骤是否处于失败状态
error: {
type: Boolean,
default: () => props$B.stepsItem.error
},
// 自定义样式
itemStyle: {
type: [Object],
default: {}
}
}
});
const props$o = defineMixin({
props: {
// 排列方向
direction: {
type: String,
default: () => props$B.steps.direction
},
// 设置第几个步骤
current: {
type: [String, Number],
default: () => props$B.steps.current
},
// 激活状态颜色
activeColor: {
type: String,
default: () => props$B.steps.activeColor
},
// 未激活状态颜色
inactiveColor: {
type: String,
default: () => props$B.steps.inactiveColor
},
// 激活状态的图标
activeIcon: {
type: String,
default: () => props$B.steps.activeIcon
},
// 未激活状态图标
inactiveIcon: {
type: String,
default: () => props$B.steps.inactiveIcon
},
// 是否显示点类型
dot: {
type: Boolean,
default: () => props$B.steps.dot
}
}
});
const props$n = defineMixin({
props: {
// input的label提示语
@@ -16271,20 +16271,6 @@ const transitionMixin = {
}
};
const props$7 = defineMixin({
props: {
// 分组标题
title: {
type: String,
default: () => props$B.cellGroup.title
},
// 是否显示外边框
border: {
type: Boolean,
default: () => props$B.cellGroup.border
}
}
});
const props$6 = defineMixin({
props: {
// 主题颜色
type: {
@@ -16473,6 +16459,20 @@ const value = {
}
}
};
const props$6 = defineMixin({
props: {
// 分组标题
title: {
type: String,
default: () => props$B.cellGroup.title
},
// 是否显示外边框
border: {
type: Boolean,
default: () => props$B.cellGroup.border
}
}
});
const props$5 = defineMixin({
props: {
color: {