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

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

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