提交 2fdb2ff2 编写于 作者: 雪洛's avatar 雪洛

update(v3): image组件@error拉齐微信小程序

上级 cccc1e41
......@@ -97,7 +97,8 @@ export default {
}
},
watch: {
src (newValue, oldValue) {
src (newValue, oldValue) {
this._setContentImage()
this._loadImage()
},
mode (newValue, oldValue) {
......@@ -111,7 +112,11 @@ export default {
}
},
mounted () {
this.availHeight = this.$el.style.height || ''
this.availHeight = this.$el.style.height || ''
this._setContentImage()
if (!this.realImagePath) {
return
}
this._loadImage()
},
methods: {
......@@ -131,10 +136,11 @@ export default {
this.$el.style.height = height + 'px'
this.sizeFixed = true
}
},
_setContentImage () {
this.$refs.content.style.backgroundImage = this.src ? `url(${this.realImagePath})` : 'none'
},
_loadImage () {
this.$refs.content.style.backgroundImage = this.src ? `url(${this.realImagePath})` : 'none'
const _self = this
const img = new Image()
img.onload = function ($event) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册