This commit is contained in:
Vinjor 2025-05-29 15:31:19 +08:00
parent f071693458
commit b566cddfed

View File

@ -229,7 +229,18 @@
<shareImages ref="canvas" :canvasWidth="canvasWidth" :canvasHeight="canvasHeight" :shareTitle="shareTitle"
:goodsTitle="goodsTitle" :shareImage="shareImage" :qrSize="qrSize" :qrUrl="qrUrl"
@success="shareSuccess()" />
<!-- 报名弹窗 -->
<uni-popup ref="popupNew">
<view class="popup-content">
<view style="text-align: center;">
<view>此通告需要收集博主信息</view>
<view>请复制通告到微信对话框填写信息报名</view>
</view>
<view style="text-align: center;width: 100%;margin-top: 20rpx;">
<view class="dl-copy-button">点击复制</view>
</view>
</view>
</uni-popup>
</view>
</view>
</template>
@ -602,7 +613,6 @@
title: e
});
})
},
/**
* 分享
@ -1040,4 +1050,24 @@
}
}
}
.popup-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 30rpx;
border-radius: 10px;
background-color: white;
.dl-copy-button {
text-align: center;
margin: auto;
border-radius: 40rpx;
width: 75%;
background-color: #FC1F3E;
color: white;
padding: 15rpx 0;
}
}
</style>