新增订单管理,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

39
node_modules/uview-ui/components/u-link/props.js generated vendored Normal file
View File

@@ -0,0 +1,39 @@
export default {
props: {
// 文字颜色
color: {
type: String,
default: uni.$u.props.link.color
},
// 字体大小单位px
fontSize: {
type: [String, Number],
default: uni.$u.props.link.fontSize
},
// 是否显示下划线
underLine: {
type: Boolean,
default: uni.$u.props.link.underLine
},
// 要跳转的链接
href: {
type: String,
default: uni.$u.props.link.href
},
// 小程序中复制到粘贴板的提示语
mpTips: {
type: String,
default: uni.$u.props.link.mpTips
},
// 下划线颜色
lineColor: {
type: String,
default: uni.$u.props.link.lineColor
},
// 超链接的问题不使用slot形式传入是因为nvue下无法修改颜色
text: {
type: String,
default: uni.$u.props.link.text
}
}
}