This commit is contained in:
Vinjor 2025-05-30 09:58:33 +08:00
parent 1937db5351
commit d6c6bfdc82

View File

@ -232,11 +232,14 @@
<!-- 报名弹窗 -->
<uni-popup ref="popupNew">
<view class="popup-content">
<view style="text-align: center;">
<view style="text-align: center;padding: 30rpx;">
<view>
<image src="@/static/detail/mingpian.png" mode="aspectFit"></image>
</view>
<view>此通告需要收集博主信息</view>
<view>请复制通告到微信对话框填写信息报名</view>
</view>
<view style="text-align: center;width: 100%;margin-top: 20rpx;">
<view style="text-align: center;width: 100%;">
<view class="dl-copy-button" @click="goLinkUrl">点击复制</view>
</view>
</view>
@ -378,6 +381,7 @@
},
onShow() {
this.$refs.popupNew.open('center')
console.log(366);
if (null != getJSONData(constant.userInfo)) {
this.userInfo = getJSONData(constant.userInfo)
@ -1093,18 +1097,23 @@
align-items: center;
justify-content: center;
flex-direction: column;
padding: 30rpx;
border-radius: 10px;
border-radius: 20rpx;
background-color: white;
image {
width: 80rpx;
height: 100rpx;
}
.dl-copy-button {
text-align: center;
margin: auto;
border-radius: 40rpx;
width: 75%;
border-radius: 0 0 20rpx 20rpx;
margin-top: 10rpx;
width: 100%;
background-color: #FC1F3E;
color: white;
padding: 15rpx 0;
padding: 20rpx 0;
}
}
</style>