修改系统通知的 关注按钮样式

This commit is contained in:
A1300399510
2023-07-14 18:13:36 +08:00
parent bb6028f0e7
commit 76ccf5432b
3 changed files with 79 additions and 8 deletions

View File

@@ -9,9 +9,9 @@
<img class="white-cross" @click="emit('close')" src="@/assets/img/publicImage/white-cross.svg">
</div>
<div class="attention flexacenter">
<div class="attention flexacenter" v-if="issubscribe == 0">
<div class="attention-text">关注寄托服务号第一时间收到消息通知</div>
<el-popover placement="bottom" popper-class="have-questions flexcenter" :width="160" trigger="click"
<el-popover placement="bottom" popper-class="flexcenter" :width="160" trigger="click"
popper-style="border-radius: 14px;padding: 20px;">
<template #reference>
<div class="attention-btn flexcenter">关注</div>
@@ -220,7 +220,7 @@ const goDetail = (uniqid, status) => {
}
.attention {
margin: -26px auto 10px;
margin: -26px auto 0;
width: 660px;
height: 50px;
background-color: rgba(255, 255, 255, 1);
@@ -249,7 +249,7 @@ const goDetail = (uniqid, status) => {
.list {
overflow: auto;
margin: 0 6px 30px;
margin: 10px 6px 30px;
/*滚动条样式*/
&::-webkit-scrollbar {
@@ -348,4 +348,8 @@ const goDetail = (uniqid, status) => {
}
}
}
.QR-code {
width: 100%;
}
</style>