1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <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 class="box-1">
- <navigator url="/pages/applic/applic">
- <view class="img">
- <image src="../../static/img/spread.png"></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>
|