线上服务器地址
方法1,行内:
<view class="imgbox" :style="{ 'background-image': 'url(' + bgImg + ')' }"></view>
data() {
return {
bgImg: this.$u.http.config.imageUrl + '/workbg.png',
}
}
<style>
.imgbox{
width:100px;
height:100px;
background-size: 100% 100%;
}
</style>
方法2,样式内:
<view class="imgbox"></view>
$url: 'http://xianshangdizhi';//scss文件内定义通用字段
<style>
.imgbox{
width:100px;
height:100px;
background: url( $url + '/workbg.png') no-repeat;
background-size: 100% 100%;
}
</style>
//或者直接干脆将地址写死 background: url('http://xianshangdizhi/workbg.png') no-repeat;
网友评论