fix: cdn url (#8004)

This commit is contained in:
neverland 2021-01-26 14:16:13 +08:00 committed by GitHub
parent 3562148a23
commit 02d743c7ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -15,7 +15,7 @@ import Button from '../button';
import Coupon from '../coupon';
const [createComponent, bem, t] = createNamespace('coupon-list');
const EMPTY_IMAGE = 'https://img.yzcdn.cn/vant/coupon-empty.png';
const EMPTY_IMAGE = 'https://img01.yzcdn.cn/vant/coupon-empty.png';
export default createComponent({
props: {

View File

@ -28,7 +28,7 @@ export default createComponent({
}
if (PRESET_IMAGES.indexOf(image) !== -1) {
image = `https://img.yzcdn.cn/vant/empty-image-${image}.png`;
image = `https://img01.yzcdn.cn/vant/empty-image-${image}.png`;
}
return <img src={image} />;

View File

@ -4,7 +4,7 @@ exports[`should render demo and match snapshot 1`] = `
<div>
<div class="van-empty">
<div class="van-empty__image">
<img src="https://img.yzcdn.cn/vant/empty-image-default.png">
<img src="https://img01.yzcdn.cn/vant/empty-image-default.png">
</div>
<p class="van-empty__description">
Description
@ -56,7 +56,7 @@ exports[`should render demo and match snapshot 1`] = `
>
<div class="van-empty">
<div class="van-empty__image">
<img src="https://img.yzcdn.cn/vant/empty-image-error.png">
<img src="https://img01.yzcdn.cn/vant/empty-image-error.png">
</div>
<p class="van-empty__description">
Description
@ -89,7 +89,7 @@ exports[`should render demo and match snapshot 1`] = `
<div>
<div class="van-empty">
<div class="van-empty__image">
<img src="https://img.yzcdn.cn/vant/empty-image-default.png">
<img src="https://img01.yzcdn.cn/vant/empty-image-default.png">
</div>
<p class="van-empty__description">
Description

View File

@ -3,7 +3,7 @@
exports[`should render bottom slot correctly 1`] = `
<div class="van-empty">
<div class="van-empty__image">
<img src="https://img.yzcdn.cn/vant/empty-image-default.png">
<img src="https://img01.yzcdn.cn/vant/empty-image-default.png">
</div>
<div class="van-empty__bottom">
Custom bottom
@ -14,7 +14,7 @@ exports[`should render bottom slot correctly 1`] = `
exports[`should render description slot correctly 1`] = `
<div class="van-empty">
<div class="van-empty__image">
<img src="https://img.yzcdn.cn/vant/empty-image-default.png">
<img src="https://img01.yzcdn.cn/vant/empty-image-default.png">
</div>
<p class="van-empty__description">
Custom description

View File

@ -17,7 +17,7 @@ const PRESET_ICONS = [
function getIconURL(icon) {
if (PRESET_ICONS.indexOf(icon) !== -1) {
return `https://img.yzcdn.cn/vant/share-sheet-${icon}.png`;
return `https://img01.yzcdn.cn/vant/share-sheet-${icon}.png`;
}
return icon;
}