This commit is contained in:
zpc 2026-02-08 02:35:39 +08:00
parent 6e4c6c1023
commit 284b0c20f0

View File

@ -94,12 +94,13 @@
</mescroll-body>
<rule-pop ref="rulePop"></rule-pop>
<uni-popup ref="posterPopup" type="center">
<view style="width:650rpx;height:950rpx;">
<image :src="logo_image" style="width: 100%;"></image>
</view>
<view style="text-align: center; margin-top: 20rpx;">
<image show-menu-by-longpress style="width: 48px;height: 48px;" @click="saveImageToPhotosAlbum()"
:src="getXiaZai()"></image>
<view class="poster-popup-wrap">
<view class="poster-image-box">
<image :src="logo_image" mode="widthFix" show-menu-by-longpress></image>
</view>
<view class="poster-save-btn" @click="saveImageToPhotosAlbum()">
<text>保存海报</text>
</view>
</view>
</uni-popup>
<uni-popup ref="bindCodePopup" type="center">
@ -783,4 +784,39 @@ page {
letter-spacing: 6rpx;
}
}
.poster-popup-wrap {
display: flex;
flex-direction: column;
align-items: center;
.poster-image-box {
width: 650rpx;
border-radius: 16rpx;
overflow: hidden;
image {
width: 100%;
height: auto;
display: block;
}
}
.poster-save-btn {
width: 400rpx;
height: 80rpx;
margin-top: 30rpx;
background-color: #D8FD24;
border-radius: 40rpx;
display: flex;
align-items: center;
justify-content: center;
text {
font-size: 30rpx;
color: #333333;
font-weight: 500;
}
}
}
</style>