| | |
| | | @click="goNoticeDetail(m)"> |
| | | <img :src="`../../static/img/notice-${m.viewStatus?1:0}-${m.messageType}.svg`" alt="" style="margin-right: 6px;"> |
| | | <div class="notice-content-item-left"> |
| | | <p>{{ m.theme }}</p> |
| | | <p style="display: flex;justify-content: space-between;"> |
| | | <span>{{ m.theme }}</span> |
| | | <i class="el-icon-delete" style="cursor: pointer;font-size: 16px;margin-right: 20px;" @click.stop="handleDel(m)"></i> |
| | | </p> |
| | | <p style="width: 100%;display: flex;align-items: center;justify-content: space-between;"> |
| | | <span>发送人:{{ m.createUser }}</span> |
| | | <span>{{ m.createTime }}</span> |
| | |
| | | .readStyle .notice-content-item-left p:nth-child(2){ |
| | | color: #90CBCD; |
| | | } |
| | | .el-icon-delete{ |
| | | display: none; |
| | | } |
| | | .notice-content-item:hover .el-icon-delete{ |
| | | display: inline-block; |
| | | } |
| | | </style> |