123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view class="joinsuccess">
- <image src="../../static/images/joinsuccess.png" mode=""></image>
- <navigator url="/pages/index/index" open-type="switchTab" >
- <view class="backhome">
- 返回首页
- </view>
- </navigator>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- page {
- height: 100%;
- }
- .joinsuccess {
- width: 750rpx;
- height: 100%;
- position: relative;
- image {
- width: 100%;
- height: 100%;
- }
- .backhome {
- width: 464rpx;
- height: 77rpx;
- border: 2rpx solid #FFFFFF;
- border-radius: 38rpx;
- font-size: 34rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- line-height: 77rpx;
- text-align: center;
- position: absolute;
- bottom: 89rpx;
- right: 0;
- left: 0;
- margin: auto;
- }
- }
- </style>
|