vue:使用v-for写入:style中图片做背景

<div class="honor_row" v-for="(item,i) in points.awardList" :key='i'>
                <span class="radius200 " :style="{'background': 'url('+imgDomain+item.filePhysPath+') no-repeat center center'}" :class="item.sttusCode == '14002'?'honor-light':'honor-nolight'">
                </span>
                <el-button v-if="item.sttusCode == '14001'" type="primary" plain @click="showdialogHonor(item.awardName,item.awardId)">领取荣誉</el-button>
              </div>

:style里面不能有;号
键值要有’'括起来

猜你喜欢

转载自blog.csdn.net/webfullstack/article/details/82909692