|
@@ -32,7 +32,7 @@
|
|
|
style="font-size: 24rpx;font-weight: 400;color:rgba(0, 0, 0, 0.6);margin-left: 20rpx;">{{!applyUserlist.length?'暂无报名':'已报名'}}</text>
|
|
|
</view>
|
|
|
<view class="cost">
|
|
|
- ¥<text style="font-size: 48rpx;">{{actItemList.cost}}</text>
|
|
|
+ <!-- ¥<text style="font-size: 48rpx;">{{actItemList.cost}}</text> -->
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="acinfo">
|
|
@@ -105,7 +105,7 @@
|
|
|
<view class="btnt1" v-if="actItemList.openid==oid">本人创建,暂不支持加入</view>
|
|
|
<view class="btnt" v-else-if="!isSign" @click="applyAdd">立即报名</view>
|
|
|
<view class="btnt" v-else-if="isSign" @click="cancelAdd">取消报名</view>
|
|
|
- <view class="btnt1" v-else-if="actItemList.bnum>=actItemList.pers">人数已满</view>
|
|
|
+ <!-- <view class="btnt1" v-else-if="actItemList.bnum>=actItemList.pers">人数已满</view> -->
|
|
|
|
|
|
<!-- <view class="btnt1" v-else-if="isSign && actItemList.openid!=oid">已报名</view> -->
|
|
|
</view>
|
|
@@ -129,11 +129,24 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view>
|
|
|
+ <view class="popup-container2" style="height: 175px;" v-show="showPopupConfirm">
|
|
|
+ <view class="popup">
|
|
|
+ <view class="header" style="margin-top: 15px;">
|
|
|
+ <view class="imgShade">
|
|
|
+ <image src="../../static/mine/gou3.png" mode="aspectFill">
|
|
|
+ </view>
|
|
|
+ </image>
|
|
|
+ <text style="margin-bottom: 24px;">报名成功</text>
|
|
|
+ </view>
|
|
|
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="" style="height: 170rpx;width: 750rpx;">
|
|
|
<!-- 占位的 -->
|
|
|
</view>
|
|
|
-
|
|
|
+ <u-loading-page :loading="uLoading"></u-loading-page>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -154,9 +167,12 @@
|
|
|
|
|
|
// 用户收藏列表
|
|
|
collArr: [],
|
|
|
+ //报名成功弹窗
|
|
|
+ showPopupConfirm: false,
|
|
|
|
|
|
// 用户订阅列表
|
|
|
// subArr: [],
|
|
|
+ uLoading:false,
|
|
|
|
|
|
// 收藏按钮节流
|
|
|
stopTimer: 0,
|
|
@@ -228,12 +244,14 @@
|
|
|
},
|
|
|
// 获取页面数据
|
|
|
getdata() {
|
|
|
+ this.uLoading=true
|
|
|
let data = {
|
|
|
oid: this.$store.state.user.openid,
|
|
|
acId: this.acId,
|
|
|
}
|
|
|
this.$request('/selectActivityID', "POST", data).then(res => {
|
|
|
// console.log('页面数据', res[0][0]);
|
|
|
+ this.uLoading=false
|
|
|
this.actItemList = res[0][0]
|
|
|
})
|
|
|
|
|
@@ -277,6 +295,7 @@
|
|
|
|
|
|
// 确认报名操作
|
|
|
conf() {
|
|
|
+ this.showPopup = false
|
|
|
let data = {
|
|
|
oid: this.$store.state.user.openid, //用户id
|
|
|
acid: this.acId,
|
|
@@ -288,13 +307,19 @@
|
|
|
|
|
|
// 添加消息页面系统通知提示报名成功
|
|
|
this.addMessage()
|
|
|
+ this.showPopupConfirm = true
|
|
|
+ this.btnEnroll()
|
|
|
+ this.getUsers()
|
|
|
+ setTimeout(() => {
|
|
|
+ this.showPopupConfirm = false
|
|
|
+ // this.getData()
|
|
|
+ }, 1500)
|
|
|
|
|
|
|
|
|
// 弹窗关闭
|
|
|
- this.showPopup = false
|
|
|
- uni.reLaunch({
|
|
|
- url: '/pages/Sign/Sign',
|
|
|
- })
|
|
|
+ // uni.reLaunch({
|
|
|
+ // url: '/pages/Sign/Sign',
|
|
|
+ // })
|
|
|
})
|
|
|
|
|
|
// this.showPopup = false;
|
|
@@ -448,7 +473,7 @@
|
|
|
}
|
|
|
this.$request('/selectApplyUser', 'POST', data).then(res => {
|
|
|
console.log('获取报名用户列表', res[0]);
|
|
|
- this.applyUserlist=[]
|
|
|
+ this.applyUserlist = []
|
|
|
res[0].forEach(e => {
|
|
|
this.applyUserlist.push(e.avatar)
|
|
|
})
|
|
@@ -485,6 +510,87 @@
|
|
|
.activityDetailNew {
|
|
|
background-color: #fff;
|
|
|
|
|
|
+ .popup-container2 {
|
|
|
+ position: fixed;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 520rpx;
|
|
|
+ height: 260rpx;
|
|
|
+ z-index: 1000;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ // display: none;
|
|
|
+ box-shadow: 0rpx 3rpx 10rpx 5rpx rgba(0, 0, 0, .1);
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .popup {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .header {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ margin-top: 24px;
|
|
|
+ font-size: 34rpx;
|
|
|
+ font-weight: 600;
|
|
|
+
|
|
|
+ .imgShade {
|
|
|
+ width: 170rpx;
|
|
|
+ height: 170rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ border: 10rpx #0056A8 solid;
|
|
|
+ border-radius: 50%;
|
|
|
+ box-shadow: 0 0 10rpx #0056A8;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ image {
|
|
|
+ width: 150rpx;
|
|
|
+ height: 150rpx;
|
|
|
+ margin-top: 15px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .cancel-btn {
|
|
|
+ width: 50%;
|
|
|
+ height: 100rpx;
|
|
|
+ background-color: #F7F7F7;
|
|
|
+ color: #000;
|
|
|
+ font-size: 34rpx;
|
|
|
+ text-align: center;
|
|
|
+ border-bottom-left-radius: 16rpx;
|
|
|
+ line-height: 50px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .confirm-btn {
|
|
|
+ width: 50%;
|
|
|
+ height: 100rpx;
|
|
|
+ background-color: #0081FE;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 34rpx;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 50px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
.top {
|
|
|
width: 750rpx;
|
|
|
position: relative;
|