filesbox/miniprogram/FilesBox/node_modules/@vant/weapp/lib/empty/index.wxs
2023-09-21 10:23:31 +08:00

16 lines
284 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,
};