|
-
- export default {
- props: {
-
- hairline: {
- type: Boolean,
- default: uni.$u.props.button.hairline
- },
-
- type: {
- type: String,
- default: uni.$u.props.button.type
- },
-
- size: {
- type: String,
- default: uni.$u.props.button.size
- },
-
- shape: {
- type: String,
- default: uni.$u.props.button.shape
- },
-
- plain: {
- type: Boolean,
- default: uni.$u.props.button.plain
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.button.disabled
- },
-
- loading: {
- type: Boolean,
- default: uni.$u.props.button.loading
- },
-
- loadingText: {
- type: [String, Number],
- default: uni.$u.props.button.loadingText
- },
-
- loadingMode: {
- type: String,
- default: uni.$u.props.button.loadingMode
- },
-
- loadingSize: {
- type: [String, Number],
- default: uni.$u.props.button.loadingSize
- },
-
-
- openType: {
- type: String,
- default: uni.$u.props.button.openType
- },
-
-
- formType: {
- type: String,
- default: uni.$u.props.button.formType
- },
-
-
- appParameter: {
- type: String,
- default: uni.$u.props.button.appParameter
- },
-
- hoverStopPropagation: {
- type: Boolean,
- default: uni.$u.props.button.hoverStopPropagation
- },
-
- lang: {
- type: String,
- default: uni.$u.props.button.lang
- },
-
- sessionFrom: {
- type: String,
- default: uni.$u.props.button.sessionFrom
- },
-
-
- sendMessageTitle: {
- type: String,
- default: uni.$u.props.button.sendMessageTitle
- },
-
-
- sendMessagePath: {
- type: String,
- default: uni.$u.props.button.sendMessagePath
- },
-
-
- sendMessageImg: {
- type: String,
- default: uni.$u.props.button.sendMessageImg
- },
-
-
- showMessageCard: {
- type: Boolean,
- default: uni.$u.props.button.showMessageCard
- },
-
- dataName: {
- type: String,
- default: uni.$u.props.button.dataName
- },
-
- throttleTime: {
- type: [String, Number],
- default: uni.$u.props.button.throttleTime
- },
-
- hoverStartTime: {
- type: [String, Number],
- default: uni.$u.props.button.hoverStartTime
- },
-
- hoverStayTime: {
- type: [String, Number],
- default: uni.$u.props.button.hoverStayTime
- },
-
-
- text: {
- type: [String, Number],
- default: uni.$u.props.button.text
- },
-
- icon: {
- type: String,
- default: uni.$u.props.button.icon
- },
-
- iconColor: {
- type: String,
- default: uni.$u.props.button.icon
- },
-
- color: {
- type: String,
- default: uni.$u.props.button.color
- }
- }
- }
|