123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <template>
- <view>
- <view class="top_color"></view>
- <view class="content">
- <view class="title">图片名称</view>
- <view class="game_box">
- <image :src="sourseImg" mode="aspectFill"></image>
-
- <view class="tip">
- <view class="left">
- <view class="icon">
- <image src="./icon/icon.png" mode=""></image>
- </view>
- <view class="text">我的最快纪录</view>
- </view>
- <view class="right">36秒</view>
- </view>
- </view>
- </view>
-
- <view class="btn_box">
- <view class="left">
- <view class="btn btn_1"></view>
- <view class="btn btn_2"></view>
- </view>
- <view class="right" @click="go_personal_rank()">
- <view class="btn"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- sourseImg: "https://cdn.colorhub.me/E2qY01NiVN7soio3_WPoSPRZ2CQI3s0YoOyBhGw_F7U/rs:auto:280:0:0/g:ce/bG9jYWw6Ly8vMTYv/YzUvNTgxMDFlY2Ew/NDg4OTZiNjhkZTIz/NmVmZTliNDZlMTg3/OGFhMTZjNS5qcGVn.jpg",
- };
- },
- onLoad() {
-
- },
- methods: {
- go_personal_rank(){
- uni.navigateTo({
- url:"../personal_rank/personal_rank"
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #F3F8F7;
- }
- .top_color {
- z-index: 1;
- width: 750rpx;
- height: 100rpx;
- background-color: #009fe8;
- position: fixed;
- top: 1;
- left: 0;
- }
- .content {
- position: relative;
- top: 20rpx;
- z-index: 2;
- width: 750rpx;
- background-color: #FFFFFF;
- border-radius: 50rpx;
- padding-bottom: 40rpx;
- .title {
- text-align: center;
- font-size: 36rpx;
- font-weight: 700;
- height: 100rpx;
- line-height: 100rpx;
- }
- .game_box {
- box-sizing: border-box;
- padding: 0 35rpx;
- image{
- width: 680rpx;
- height: 680rpx;
- }
- .tip{
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
-
- .left{
- display: flex;
- align-items: center;
- .icon{
- margin-right: 10rpx;
- image{
- width: 28rpx;
- height: 28rpx;
- }
- }
- .text{
- color: #4F4F4F;
- font-size: 26rpx;
- }
- }
- .right{
- font-size: 28rpx;
- }
- }
- }
- }
- .btn_box{
- margin-top: 30rpx;
- box-sizing: border-box;
- padding: 35rpx;
-
- height: 260rpx;
- display: flex;
- justify-content: space-between;
- .left{
- .btn{
- width: 400rpx;
- height: 125rpx;
-
- background-size: cover;
- background-repeat: no-repeat;
- }
- .btn_1{
- margin-bottom: 8rpx;
- background-image: url(./icon/detail.png);
- }
- .btn_2{
- background-image: url(./icon/again.png);
- }
- }
- .right{
- width: 260rpx;
- height: 258rpx;
-
- background-image: url(./icon/rank.png);
- background-size: cover;
- background-repeat: no-repeat;
- }
- }
- </style>
|