This commit is contained in:
zoujiandong
2025-07-22 15:56:22 +08:00
parent 89336f5621
commit 1d598d149b
28 changed files with 881 additions and 509 deletions
+147 -147
View File
@@ -7319,7 +7319,7 @@ function isConsoleWritable() {
function initRuntimeSocketService() {
const hosts = "192.168.100.165,127.0.0.1";
const port = "8090";
const id = "mp-weixin_aXLJP2";
const id = "mp-weixin_sl0SNv";
const lazy = typeof swan !== "undefined";
let restoreError = lazy ? () => {
} : initOnError();
@@ -14313,6 +14313,74 @@ Schema.register = function register(type2, validator) {
Schema.warning = warning;
Schema.messages = messages;
const props$l = 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$k = 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$j = defineMixin({
props: {
// 滑块的移动过渡时间,单位ms
duration: {
@@ -15484,7 +15552,7 @@ const mixinUpload = {
}
}
};
const props$k = defineMixin({
const props$i = defineMixin({
props: {
// 接受的文件类型, 可选值为all media image file video
accept: {
@@ -15612,74 +15680,6 @@ const props$k = defineMixin({
}
}
});
const props$j = 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$i = 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$h = defineMixin({
props: {
modelValue: {
@@ -16401,83 +16401,6 @@ const props$4 = defineMixin({
}
});
const props$3 = defineMixin({
props: {
// 是否显示圆点
isDot: {
type: Boolean,
default: () => props$B.badge.isDot
},
// 显示的内容
value: {
type: [Number, String],
default: () => props$B.badge.value
},
// 显示的内容
modelValue: {
type: [Number, String],
default: () => props$B.badge.modelValue
},
// 是否显示
show: {
type: Boolean,
default: () => props$B.badge.show
},
// 最大值,超过最大值会显示 '{max}+'
max: {
type: [Number, String],
default: () => props$B.badge.max
},
// 主题类型,error|warning|success|primary
type: {
type: String,
default: () => props$B.badge.type
},
// 当数值为 0 时,是否展示 Badge
showZero: {
type: Boolean,
default: () => props$B.badge.showZero
},
// 背景颜色,优先级比type高,如设置,type参数会失效
bgColor: {
type: [String, null],
default: () => props$B.badge.bgColor
},
// 字体颜色
color: {
type: [String, null],
default: () => props$B.badge.color
},
// 徽标形状,circle-四角均为圆角,horn-左下角为直角
shape: {
type: String,
default: () => props$B.badge.shape
},
// 设置数字的显示方式,overflow|ellipsis|limit
// overflow会根据max字段判断,超出显示`${max}+`
// ellipsis会根据max判断,超出显示`${max}...`
// limit会依据1000作为判断条件,超出1000,显示`${value/1000}K`,比如2.2k、3.34w,最多保留2位小数
numberType: {
type: String,
default: () => props$B.badge.numberType
},
// 设置badge的位置偏移,格式为 [x, y],也即设置的为top和right的值,absolute为true时有效
offset: {
type: Array,
default: () => props$B.badge.offset
},
// 是否反转背景和字体颜色
inverted: {
type: Boolean,
default: () => props$B.badge.inverted
},
// 是否绝对定位
absolute: {
type: Boolean,
default: () => props$B.badge.absolute
}
}
});
const props$2 = defineMixin({
props: {
// 主题颜色
type: {
@@ -16666,6 +16589,83 @@ const value = {
}
}
};
const props$2 = defineMixin({
props: {
// 是否显示圆点
isDot: {
type: Boolean,
default: () => props$B.badge.isDot
},
// 显示的内容
value: {
type: [Number, String],
default: () => props$B.badge.value
},
// 显示的内容
modelValue: {
type: [Number, String],
default: () => props$B.badge.modelValue
},
// 是否显示
show: {
type: Boolean,
default: () => props$B.badge.show
},
// 最大值,超过最大值会显示 '{max}+'
max: {
type: [Number, String],
default: () => props$B.badge.max
},
// 主题类型,error|warning|success|primary
type: {
type: String,
default: () => props$B.badge.type
},
// 当数值为 0 时,是否展示 Badge
showZero: {
type: Boolean,
default: () => props$B.badge.showZero
},
// 背景颜色,优先级比type高,如设置,type参数会失效
bgColor: {
type: [String, null],
default: () => props$B.badge.bgColor
},
// 字体颜色
color: {
type: [String, null],
default: () => props$B.badge.color
},
// 徽标形状,circle-四角均为圆角,horn-左下角为直角
shape: {
type: String,
default: () => props$B.badge.shape
},
// 设置数字的显示方式,overflow|ellipsis|limit
// overflow会根据max字段判断,超出显示`${max}+`
// ellipsis会根据max判断,超出显示`${max}...`
// limit会依据1000作为判断条件,超出1000,显示`${value/1000}K`,比如2.2k、3.34w,最多保留2位小数
numberType: {
type: String,
default: () => props$B.badge.numberType
},
// 设置badge的位置偏移,格式为 [x, y],也即设置的为top和right的值,absolute为true时有效
offset: {
type: Array,
default: () => props$B.badge.offset
},
// 是否反转背景和字体颜色
inverted: {
type: Boolean,
default: () => props$B.badge.inverted
},
// 是否绝对定位
absolute: {
type: Boolean,
default: () => props$B.badge.absolute
}
}
});
const props$1 = defineMixin({
props: {
// 是否展示工具条