1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <view class="sign">
- <statusBar :item="navBarData"></statusBar>
- <view class="signBox">
- <view class="img">
- <image src="https://teacherapi.cocorobo.cn/teaching-file/static/lg.png" mode="aspectFill"></image>
- </view>
- <view style="font-size: 34rpx;font-weight: 400;color: rgba(0, 0, 0, 0.8);padding: 30rpx 0;">报名成功</view>
- <!-- <text>等待管理员审核</text> -->
- <button @click="gotoAct">查看活动</button>
- <text style="font-size: 24rpx;font-weight: 400;color: rgba(0, 86, 168, 1);" @click="gotoIndex">返回首页</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- navBarData: {
- title: '报名结果',
- // btn: 2
- },
- };
- },
- methods: {
- gotoIndex() {
- uni.switchTab({
- url: '/pages/index/index'
- })
- },
- gotoAct(){
- uni.navigateTo({
- url:'/pages/mineActive/mineActive'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .sign {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- .signBox {
- width: 100%;
- text-align: center;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .img {
- width: 100%;
- height: 160rpx;
- image {
- width: 160rpx;
- height: 160rpx;
- }
- }
- // text {
- // &:nth-child(2) {
- // font-size: 34rpx;
- // margin-bottom: 8px;
- // font-weight: 600;
- // }
- // &:nth-child(3) {
- // font-size: 24rpx;
- // color: rgb(144, 145, 147);
- // margin-bottom: 15px;
- // }
- // &:nth-child(5) {
- // font-size: 24rpx;
- // }
- // }
- button {
- width: 200rpx;
- height: 64rpx;
- color: white;
- line-height: 64rpx;
- background-color: #0056A8;
- font-size: 28rpx;
- border-radius: 100px;
- margin-bottom: 10px;
- }
- }
- }
- </style>
|