mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[feat] Icon: 添加识别本地图片路径的功能 (#1884)
添加识别本地图片路径的功能,以 “.” , "/", "../" 开头的本地路径都以正确的被读取
This commit is contained in:
parent
c8dab86079
commit
8d2cad0ade
2
dist/wxs/utils.wxs
vendored
2
dist/wxs/utils.wxs
vendored
@ -2,7 +2,7 @@ var bem = require('./bem.wxs').bem;
|
||||
var memoize = require('./memoize.wxs').memoize;
|
||||
|
||||
function isSrc(url) {
|
||||
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0 || url.indexOf('//') === 0;
|
||||
return url.indexOf(".") === 0 || url.indexOf("/") === 0 || url.indexOf('http') === 0 || url.indexOf('data:image') === 0 || url.indexOf('//') === 0;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user