mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[improvement] Icon: reduce setData (#1009)
This commit is contained in:
parent
5064c0c397
commit
4303aa34b5
@ -10,7 +10,7 @@ const postcss = require('gulp-postcss');
|
||||
const isProduction = process.env.NODE_ENV === 'production';
|
||||
const src = path.join(__dirname, '../packages');
|
||||
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
|
||||
const ext = ['ts', 'less', 'json', 'wxml'];
|
||||
const ext = ['ts', 'less', 'json', 'wxml', 'wxs'];
|
||||
|
||||
function copy(ext) {
|
||||
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
|
||||
@ -45,6 +45,7 @@ gulp.task('compile-ts', () =>
|
||||
})
|
||||
.pipe(gulp.dest(dist))
|
||||
);
|
||||
gulp.task('compile-wxs', () => copy('wxs'));
|
||||
gulp.task('compile-json', () => copy('json'));
|
||||
gulp.task('compile-wxml', () => copy('wxml'));
|
||||
gulp.task('build', ext.map(ext => 'compile-' + ext));
|
||||
|
@ -11,13 +11,8 @@ function isNumber(value) {
|
||||
return /^\d+$/.test(value);
|
||||
}
|
||||
|
||||
function isSrc(url) {
|
||||
return /^(https?:)?\/\/|data:image/.test(url);
|
||||
}
|
||||
|
||||
export {
|
||||
isObj,
|
||||
isDef,
|
||||
isSrc,
|
||||
isNumber
|
||||
};
|
||||
|
5
packages/common/utils.wxs
Normal file
5
packages/common/utils.wxs
Normal file
@ -0,0 +1,5 @@
|
||||
function isSrc(url) {
|
||||
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0;
|
||||
}
|
||||
|
||||
module.exports.isSrc = isSrc;
|
@ -1,4 +1,3 @@
|
||||
import { isSrc } from '../common/utils';
|
||||
import { VantComponent } from '../common/component';
|
||||
|
||||
VantComponent({
|
||||
@ -14,12 +13,6 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
isSrc() {
|
||||
return isSrc(this.data.name);
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
onClick() {
|
||||
this.$emit('click');
|
||||
|
@ -1,5 +1,5 @@
|
||||
<view
|
||||
class="custom-class {{ classPrefix }} {{ isSrc ? 'van-icon--image' : classPrefix + '-' + name }}"
|
||||
class="custom-class {{ classPrefix }} {{ utils.isSrc(name) ? 'van-icon--image' : classPrefix + '-' + name }}"
|
||||
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
|
||||
bind:tap="onClick"
|
||||
>
|
||||
@ -10,7 +10,9 @@
|
||||
{{ info }}
|
||||
</view>
|
||||
<image
|
||||
wx:if="{{ isSrc }}"
|
||||
wx:if="{{ utils.isSrc(name) }}"
|
||||
src="{{ name }}"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<wxs src="../common/utils.wxs" module="utils" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user