el-select中el-option中插入图片
先看效果
上代码
<el-select v-model="form.promotionGroupStyle.id" style="width: 355px;" filterable clearable @change="QueryPromotionGroupStyle" >
<el-option v-for="item in promotionGroupStyles" :key="item.id":label="item.name" :value="item.id">
<span>{{ item.name }}</span>
<img :src="'http://www.baidu.com' + item.defaultImage" style="height:32px;float: right">
</el-option>
</el-select>
item.defaultImage为后端返回的在服务器上的图片资源位置
就是这么简单
快试试吧