<el-dropdown>
<a-icon @click="noticeVisible = true"
style="margin-left:30px;font-size: 20px;cursor: pointer" type="notification" />
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="item in data" style="width: 300px" :key="item.id">
<div style="line-height: 1.7em"><span class="el-icon-s-promotion" style="margin-right: 10px"></span>{{item.content}}</div>
<a-divider style="margin: 5px 0 0 0"/>
</el-dropdown-item>
<a style="position:absolute;cursor:pointer;right: 10px;bottom: 10px;margin-bottom:10px;margin-top:10px">查看全部</a>
</el-dropdown-menu>
</el-dropdown>
position:absolute改成相对定位position:relative
你把a用el-dropdown-item再包一下,再去改他的样式我觉得会比较好看一点吧