mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(Empty): add Empty component * fix: 支持传入自定义图片链接 Co-authored-by: shendongfeng <shendongfeng@youzan.com>
23 lines
492 B
TypeScript
23 lines
492 B
TypeScript
import { VantComponent } from '../common/component';
|
|
|
|
const PRESETS = ['error', 'search', 'default', 'network'];
|
|
|
|
VantComponent({
|
|
props: {
|
|
description: String,
|
|
image: {
|
|
type: String,
|
|
value: 'default',
|
|
},
|
|
},
|
|
created() {
|
|
if (PRESETS.indexOf(this.data.image) !== -1) {
|
|
this.setData({
|
|
imageUrl: `https://img.yzcdn.cn/vant/empty-image-${this.data.image}.png`,
|
|
});
|
|
} else {
|
|
this.setData({ imageUrl: this.data.image });
|
|
}
|
|
},
|
|
});
|