123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import baseComponent from '../helpers/baseComponent'
- import classNames from '../helpers/classNames'
- import styleToCssString from '../helpers/styleToCssString'
- baseComponent({
- properties: {
- prefixCls: {
- type: String,
- value: 'wux-card',
- },
- bordered: {
- type: Boolean,
- value: true,
- },
- full: {
- type: Boolean,
- value: false,
- },
- title: {
- type: String,
- value: '',
- },
- thumb: {
- type: String,
- value: '',
- },
- thumbStyle: {
- type: [String, Object],
- value: '',
- observer(newVal) {
- this.setData({
- extStyle: styleToCssString(newVal),
- })
- },
- },
- extra: {
- type: String,
- value: '',
- },
- },
- data: {
- extStyle: '',
- },
- computed: {
- classes() {
- const { prefixCls, bordered, full } = this.data
- const wrap = classNames(prefixCls, {
- [`${prefixCls}--bordered`]: bordered,
- [`${prefixCls}--full`]: full,
- })
- const hd = `${prefixCls}__hd`
- const content = `${prefixCls}__content`
- const thumb = `${prefixCls}__thumb`
- const extra = `${prefixCls}__extra`
- const bd = `${prefixCls}__bd`
- const ft = `${prefixCls}__ft`
- return {
- wrap,
- hd,
- content,
- thumb,
- extra,
- bd,
- ft,
- }
- },
- },
- })
|