123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- export default {
- props: {
-
- title: {
- type: [String, Number],
- default: uni.$u.props.cell.title
- },
-
- label: {
- type: [String, Number],
- default: uni.$u.props.cell.label
- },
-
- value: {
- type: [String, Number],
- default: uni.$u.props.cell.value
- },
-
- icon: {
- type: String,
- default: uni.$u.props.cell.icon
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.cell.disabled
- },
-
- border: {
- type: Boolean,
- default: uni.$u.props.cell.border
- },
-
- center: {
- type: Boolean,
- default: uni.$u.props.cell.center
- },
-
- url: {
- type: String,
- default: uni.$u.props.cell.url
- },
-
- linkType: {
- type: String,
- default: uni.$u.props.cell.linkType
- },
-
- clickable: {
- type: Boolean,
- default: uni.$u.props.cell.clickable
- },
-
- isLink: {
- type: Boolean,
- default: uni.$u.props.cell.isLink
- },
-
- required: {
- type: Boolean,
- default: uni.$u.props.cell.required
- },
-
- rightIcon: {
- type: String,
- default: uni.$u.props.cell.rightIcon
- },
-
- arrowDirection: {
- type: String,
- default: uni.$u.props.cell.arrowDirection
- },
-
- iconStyle: {
- type: [Object, String],
- default: () => {
- return uni.$u.props.cell.iconStyle
- }
- },
-
- rightIconStyle: {
- type: [Object, String],
- default: () => {
- return uni.$u.props.cell.rightIconStyle
- }
- },
-
- titleStyle: {
- type: [Object, String],
- default: () => {
- return uni.$u.props.cell.titleStyle
- }
- },
-
- size: {
- type: String,
- default: uni.$u.props.cell.size
- },
-
- stop: {
- type: Boolean,
- default: uni.$u.props.cell.stop
- },
-
- name: {
- type: [Number, String],
- default: uni.$u.props.cell.name
- }
- }
- }
|