123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <template>
- <view class="like-user flex-common-css box-sizing-border iPhone-bottom">
- <Nav :title='title' titleColor='#333' :rightShow='true' :rightType='2'>
- <template v-slot:right>
- <image v-if="isUrlType === 1" @click="to(1)" class="nav-img" src="@/static/img/wallet/sd.png" mode="aspectFill"></image>
- </template>
- </Nav>
- <view class="like-text">
- <image v-if="isUrlType === 1" src="@/static/img/wallet/h.png" mode="aspectFill"></image>
- <image v-else src="@/static/img/wallet/xd-black.png" mode="aspectFill"></image>
- <text class="sys-size-28 sys-color-gray-3">{{isUrlType===1?'送出小花,搭讪心仪的他':'点击喜欢直接匹配'}}</text>
- </view>
-
- <view v-if="false" class="no-list sys-size-28 sys-color-gray-9">暂无心动</view>
- <scroll-view v-else scroll-y="true" class="list-scroll box-sizing-border" @scrolltolower="scrolltolower">
- <view class="list-home">
- <view class="list-box" v-for="(item,i) in 10" :key="i">
- <image class="image-bg" src="@/static/img/circle/1.png" mode="scaleToFill"></image>
- <image class="image-left" src="@/static/img/wallet/note.png" mode="scaleToFill"></image>
- <!-- <image class="image-type type-1" src="@/static/img/wallet/vip.png" mode="scaleToFill"></image> -->
- <image class="image-type type-2" src="@/static/img/wallet/svip.png" mode="scaleToFill"></image>
-
- <view class="list-info box-sizing-border">
- <view class="">
- <view class="info-name sys-size-36 sys-color-white sys-weight-600 sys-webkit-box">仰看辉煌仰看辉煌仰看辉煌</view>
- <view class="sys-size-24 sys-color-white">18/女/处女座</view>
- </view>
- <view v-if="isUrlType===1" class="info-right" @click="to(2)">
- <image src="@/static/img/wallet/h.png" mode="aspectFill"></image>
- </view>
- <view v-else class="">
- <image class="image-2" src="@/static/img/wallet/s-xin.png" mode="aspectFill"></image>
- <!-- <image class="image-2" src="@/static/img/wallet/n-xin.png" mode="aspectFill"></image> -->
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- data(){
- return{
- title:'',
- isUrlType:1,//1 喜欢的人 2 心动擦亮
- page:1,
- total:0,
- list:[],
- }
- },
- onLoad(e) {
- this.isUrlType = e.isUrlType * 1
- if(this.isUrlType === 1){
- this.title = '喜欢的人';
- }else{
- this.title = '心动擦亮';
- }
- },
- methods:{
- scrolltolower(){
- // 触底
- },
- to(type){
- if(type === 1){
- console.log('曝光');
- }else if(type === 2){
- // 送花
- }
- },
- },
- }
- </script>
- <style scoped lang="scss">
- .like-user{
- .nav-img{
- width: 52rpx;
- height: 52rpx;
- }
- .like-text{
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 24rpx 0;
- image{
- width: 40rpx;
- height: 40rpx;
- margin-right: 12rpx;
- }
- }
- .no-list{
- margin-top: 100rpx;
- text-align: center;
- }
- .list-scroll{
- flex: 1;
- overflow: auto;
- padding: 0 32rpx;
-
- .list-home{
- display: flex;
- justify-content: space-between;
- flex-flow: row wrap;
- }
- .list-box{
- width: 334rpx;
- height: 504rpx;
- border-radius: 20rpx;
- margin-bottom: 18rpx;
- position: relative;
- .list-info{
- width: 334rpx;
- padding: 24rpx;
- z-index: 14;
- position: absolute;
- bottom: 0;
- display: flex;
- justify-content: space-between;
- .info-name{
- width: 200rpx;
- margin-bottom: 4rpx;
- }
- .info-right{
- width: 80rpx;
- height: 80rpx;
- background-color: #fff;
- border-radius: 50%;
- text-align: center;
- image{
- width: 52rpx;
- height: 52rpx;
- margin-top: 14rpx;
- }
- }
- .image-2{
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- }
- .image-bg{
- position: absolute;
- top: 0;
- left: 0;
- width: 334rpx;
- height: 504rpx;
- border-radius: 20rpx;
- z-index: 10;
- }
- .image-left{
- position: absolute;
- top: 0;
- left: 0;
- width: 134rpx;
- height: 44rpx;
- z-index: 11;
- }
- .image-type{
- position: absolute;
- top: 0;
- right: 0;
- z-index: 12;
- }
- .type-1{
- width: 48rpx;
- height: 28rpx;
- }
- .type-2{
- width: 64rpx;
- height: 28rpx;
- }
- }
- }
- }
- </style>
|