123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="content">
- <view class="box">
- <view class="box-1">
- <navigator url="/pages/applic/teamSign">
- <view class="img">
- <image src="../../static/img/ack.png" mode=""></image>
- </view>
- <view class="title">
- 团体报名
- </view>
- </navigator>
-
- </view>
- <view class="box-1">
- <navigator url="/pages/applic/perSign">
- <view class="img">
- <image src="../../static/img/timg01.jpeg"></image>
- </view>
- <view class="title">
- 个人报名
- </view>
- </navigator>
- </view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .content{
- background-color: #F8F8F8;
- .box{
- padding: 0 24rpx;
- .box-1{
- margin-top: 24rpx;
- width: 100%;
- height: 442rpx;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- .img{
- width: 100%;
- height: 300rpx;
- // border-radius: 16rpx 16rpx 0 0;
- image{
- border-radius: 16rpx 16rpx 0 0;
- width: 100%;
-
- height: 300rpx;
- }
- }
- .title{
- height: 142rpx;
- padding-left: 24rpx;
- line-height: 142rpx;
- font-size: 34rpx;
- }
- }
- }
- }
- </style>
|