123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- 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
- }
- }
- }
|