新增订单管理,api

This commit is contained in:
唐明明
2022-01-04 11:28:04 +08:00
parent 6319631d7e
commit 219bc6027a
384 changed files with 53537 additions and 569 deletions

24
node_modules/uview-ui/components/u-steps-item/props.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
export default {
props: {
// 标题
title: {
type: [String, Number],
default: uni.$u.props.stepsItem.title
},
// 描述文本
desc: {
type: [String, Number],
default: uni.$u.props.stepsItem.desc
},
// 图标大小
iconSize: {
type: [String, Number],
default: uni.$u.props.stepsItem.iconSize
},
// 当前步骤是否处于失败状态
error: {
type: Boolean,
default: uni.$u.props.stepsItem.error
}
}
}