1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import baseComponent from '../helpers/baseComponent'
- import classNames from '../helpers/classNames'
- import styleToCssString from '../helpers/styleToCssString'
- baseComponent({
- properties: {
- prefixCls: {
- type: String,
- value: 'wux-media',
- },
- thumb: {
- type: String,
- value: '',
- },
- thumbStyle: {
- type: [String, Object],
- value: '',
- observer(newVal) {
- this.setData({
- extStyle: styleToCssString(newVal),
- })
- },
- },
- title: {
- type: String,
- value: '',
- },
- label: {
- type: String,
- value: '',
- },
- align: {
- type: String,
- value: 'center',
- },
- },
- data: {
- extStyle: '',
- },
- computed: {
- classes() {
- const { prefixCls, align } = this.data
- const wrap = classNames(prefixCls, {
- [`${prefixCls}--align-${align}`]: align,
- })
- const hd = `${prefixCls}__hd`
- const thumb = `${prefixCls}__thumb`
- const bd = `${prefixCls}__bd`
- const title = `${prefixCls}__title`
- const desc = `${prefixCls}__desc`
- return {
- wrap,
- hd,
- thumb,
- bd,
- title,
- desc,
- }
- },
- },
- })
|