1
0
mirror of https://gitee.com/vant-contrib/vant-weapp.git synced 2025-04-23 09:50:27 +08:00
2021-01-19 10:19:37 +08:00

15 lines
283 B
XML

/* 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,
};