700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > vue动态绑定img的src值

vue动态绑定img的src值

时间:2021-12-11 01:09:19

相关推荐

vue动态绑定img的src值

<img :src="src" alt="" v-show="countRatio!=null">

在data里面分别定义,根据页面数据展示的条件赋值src,引入图片的时候,在data里定义

up: require('../../../assets/images/uppunish.png'),

在函数里赋值就可以了

if (res.countRatio!=null) {if (res.countRatio > 0) {this.src = this.up;this.countRatio = Math.round(res.countRatio * 100);} else if (res.countRatio < 0) {this.src = this.down;this.countRatio = Math.round(res.countRatio * 100).toString().replace('-', '');}} else {this.countRatio = null;}

data定义数据部分

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。