Compare commits
6 Commits
zmr
...
d234176f22
| Author | SHA1 | Date | |
|---|---|---|---|
| d234176f22 | |||
|
b75e885e70
|
|||
| 9eaf84d496 | |||
| dbbd64269f | |||
|
677890a06d
|
|||
| dd3d3c17c4 |
@@ -3,6 +3,7 @@
|
|||||||
<!-- <video :src="url" :show-fullscreen-btn="true"></video> -->
|
<!-- <video :src="url" :show-fullscreen-btn="true"></video> -->
|
||||||
<view v-if="type == '2'" class="video-container">
|
<view v-if="type == '2'" class="video-container">
|
||||||
<image :src="url" mode="aspectFill" class="video"></image>
|
<image :src="url" mode="aspectFill" class="video"></image>
|
||||||
|
<view class="backs"></view>
|
||||||
<image src="/static/videoPlay.png" mode="aspectFill" class="play-video"></image>
|
<image src="/static/videoPlay.png" mode="aspectFill" class="play-video"></image>
|
||||||
</view>
|
</view>
|
||||||
<image v-else :src="url" mode="aspectFill"></image>
|
<image v-else :src="url" mode="aspectFill"></image>
|
||||||
@@ -27,6 +28,15 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
.backs {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
background-color: rgba($color: #000000, $alpha: 0.35);
|
||||||
|
z-index: 9;
|
||||||
|
}
|
||||||
.play-video {
|
.play-video {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100rpx;
|
width: 100rpx;
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="videoTop">
|
<view class="videoTop">
|
||||||
<image :src="url" mode="aspectFill" class="video"></image>
|
<image :src="url" mode="aspectFill" class="video"></image>
|
||||||
|
<view class="backs"></view>
|
||||||
<image src="/static/videoPlay.png" mode="aspectFill" class="play-video"></image>
|
<image src="/static/videoPlay.png" mode="aspectFill" class="play-video"></image>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -16,6 +17,15 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: 9;
|
z-index: 9;
|
||||||
}
|
}
|
||||||
|
.backs {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
background-color: rgba(0, 0, 0, 0.35);
|
||||||
|
z-index: 9;
|
||||||
|
}
|
||||||
.play-video {
|
.play-video {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100rpx;
|
width: 100rpx;
|
||||||
|
|||||||
BIN
pageE/static/mine/38.png
Normal file
BIN
pageE/static/mine/38.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
@@ -400,7 +400,12 @@
|
|||||||
member_id: member_id
|
member_id: member_id
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
this.follow_page = 0;
|
this.follow_page = 0;
|
||||||
this.getRecommendList(); // 关注列表
|
// this.getRecommendList(); // 关注列表
|
||||||
|
for(let i in this.recommendList){
|
||||||
|
if(this.recommendList[i].member_id == member_id){
|
||||||
|
this.recommendList[i].is_attention == 1 ? this.recommendList[i].is_attention = 0 : this.recommendList[i].is_attention = 1
|
||||||
|
}
|
||||||
|
}
|
||||||
this.getFollowList(); // 刷新发现的列表
|
this.getFollowList(); // 刷新发现的列表
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ export default {
|
|||||||
{
|
{
|
||||||
name: 'wait_evaluation',
|
name: 'wait_evaluation',
|
||||||
title: '待评价',
|
title: '待评价',
|
||||||
img: '/static/image/mine/3.png',
|
img: '/static/image/mine/40.png',
|
||||||
link: '/order/Index?current=6',
|
link: '/order/Index?current=6',
|
||||||
number: '',
|
number: '',
|
||||||
},
|
},
|
||||||
@@ -447,7 +447,7 @@ export default {
|
|||||||
@include image-size($image-width: 35rpx, $image-height: 35rpx);
|
@include image-size($image-width: 35rpx, $image-height: 35rpx);
|
||||||
}
|
}
|
||||||
> view:nth-child(5){
|
> view:nth-child(5){
|
||||||
@include image-size($image-width: 37rpx, $image-height: 37rpx);
|
@include image-size($image-width: 43rpx, $image-height: 35rpx);
|
||||||
}
|
}
|
||||||
> view:nth-child(6){
|
> view:nth-child(6){
|
||||||
@include image-size($image-width: 33rpx, $image-height: 35rpx);
|
@include image-size($image-width: 33rpx, $image-height: 35rpx);
|
||||||
|
|||||||
BIN
static/image/mine/40.png
Normal file
BIN
static/image/mine/40.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
Reference in New Issue
Block a user