mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
perf(empty): use wxs (#3933)
This commit is contained in:
parent
5e4cbeac65
commit
e2e21c3b61
@ -1,7 +1,5 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
const PRESETS = ['error', 'search', 'default', 'network'];
|
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
description: String,
|
description: String,
|
||||||
@ -10,13 +8,4 @@ VantComponent({
|
|||||||
value: 'default',
|
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 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="custom-class van-empty">
|
<view class="custom-class van-empty">
|
||||||
<view class="van-empty__image">
|
<view class="van-empty__image">
|
||||||
<slot name="image"></slot>
|
<slot name="image"></slot>
|
||||||
</view>
|
</view>
|
||||||
<view class="van-empty__image">
|
<view class="van-empty__image">
|
||||||
<image wx:if="{{ imageUrl }}" class="van-empty__image__img" src="{{ imageUrl }}" />
|
<image wx:if="{{ image }}" class="van-empty__image__img" src="{{ computed.imageUrl(image) }}" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="van-empty__description">
|
<view class="van-empty__description">
|
||||||
|
14
packages/empty/index.wxs
Normal file
14
packages/empty/index.wxs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var PRESETS = ['error', 'search', 'default', 'network'];
|
||||||
|
|
||||||
|
function imageUrl(image) {
|
||||||
|
if (PRESETS.indexOf(image) !== -1) {
|
||||||
|
return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png';
|
||||||
|
}
|
||||||
|
|
||||||
|
return image;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
imageUrl: imageUrl,
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user