| @@ -6,7 +6,9 @@ | |||||
| <view class="createTimes" | <view class="createTimes" | ||||
| >剩余写真次数:{{ userInfoModulesPinia.createTimes }}</view | >剩余写真次数:{{ userInfoModulesPinia.createTimes }}</view | ||||
| > | > | ||||
| <view class="loginOut" @click="loginOut">结束拍摄</view> | |||||
| <view class="loginOut" @click="loginOut">{{ | |||||
| userInfoModulesPinia.createTimes == 0 ? "查看相册" : "结束拍摄" | |||||
| }}</view> | |||||
| </view> | </view> | ||||
| <!-- 轮播图 --> | <!-- 轮播图 --> | ||||
| <u-swiper | <u-swiper | ||||
| @@ -49,7 +51,11 @@ | |||||
| class="wait" | class="wait" | ||||
| >做好后通知我</view | >做好后通知我</view | ||||
| > --> | > --> | ||||
| <view class="orangeBtn" @click="goChooseStyle"> 稍后查看 再来一套 </view> | |||||
| <view class="orangeBtn" @click="goChooseStyle" | |||||
| >{{ | |||||
| userInfoModulesPinia.createTimes == 0 ? "再玩一次" : "稍后查看 再来一套" | |||||
| }} | |||||
| </view> | |||||
| <view class="grayBtn" @click="loginOut"> 结束拍摄 </view> | <view class="grayBtn" @click="loginOut"> 结束拍摄 </view> | ||||
| <u-overlay class="overlay" :show="showQrCode" opacity="0.9"> | <u-overlay class="overlay" :show="showQrCode" opacity="0.9"> | ||||
| @@ -330,8 +336,8 @@ onUnload(() => { | |||||
| .loginOut { | .loginOut { | ||||
| position: absolute; | position: absolute; | ||||
| right: 20rpx; | right: 20rpx; | ||||
| height: 80%; | |||||
| line-height: 160%; | |||||
| height: 40rpx; | |||||
| line-height: 40rpx; | |||||
| background-color: #ff4f00; | background-color: #ff4f00; | ||||
| color: #ffffff; | color: #ffffff; | ||||
| padding: 0 15rpx; | padding: 0 15rpx; | ||||
| @@ -10,7 +10,9 @@ | |||||
| <view class="createTimes" | <view class="createTimes" | ||||
| >剩余写真次数:{{ userInfoModulesPinia.createTimes }}</view | >剩余写真次数:{{ userInfoModulesPinia.createTimes }}</view | ||||
| > | > | ||||
| <view class="loginOut" @click="loginOut">结束拍摄</view> | |||||
| <view class="loginOut" @click="loginOut">{{ | |||||
| userInfoModulesPinia.createTimes == 0 ? "查看相册" : "结束拍摄" | |||||
| }}</view> | |||||
| </view> | </view> | ||||
| <!-- 展示图 --> | <!-- 展示图 --> | ||||
| <view class="showImgBox imgContenBox" | <view class="showImgBox imgContenBox" | ||||
| @@ -48,26 +48,27 @@ view { | |||||
| .orangeBtn { | .orangeBtn { | ||||
| background-color: #FF4F00; | background-color: #FF4F00; | ||||
| width: 520rpx; | |||||
| height: 100rpx; | |||||
| line-height: 100rpx; | |||||
| // background-color: #FF4F00; | |||||
| width: 480rpx; | |||||
| height: 80rpx; | |||||
| line-height: 80rpx; | |||||
| font-size: 30rpx; | font-size: 30rpx; | ||||
| font-weight: bold; | font-weight: bold; | ||||
| text-align: center; | text-align: center; | ||||
| border-radius: 100rpx; | |||||
| border-radius: 80rpx; | |||||
| } | } | ||||
| .grayBtn { | .grayBtn { | ||||
| position: relative; | position: relative; | ||||
| margin-top: 30rpx; | margin-top: 30rpx; | ||||
| background-color: transparent; | background-color: transparent; | ||||
| width: 520rpx; | |||||
| height: 100rpx; | |||||
| line-height: 100rpx; | |||||
| width: 480rpx; | |||||
| height: 80rpx; | |||||
| line-height: 80rpx; | |||||
| font-size: 30rpx; | font-size: 30rpx; | ||||
| font-weight: bold; | font-weight: bold; | ||||
| text-align: center; | text-align: center; | ||||
| border-radius: 100rpx; | |||||
| border-radius: 80rpx; | |||||
| color: #FF4F00; | color: #FF4F00; | ||||
| border: 2rpx solid #FF4F00; | border: 2rpx solid #FF4F00; | ||||
| } | } | ||||