This commit is contained in:
Gdpao
2020-08-09 19:08:12 +08:00
parent 097f7e3cba
commit 234f11eeef
22 changed files with 306 additions and 223 deletions

View File

@@ -1,22 +0,0 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>

View File

@@ -1,162 +1,231 @@
<template>
<view class="userinfo">
<view class="userhead">
<image :src="item.member_avatar"></image>
<text class="follow" v-if="!is_follow" @click="following(item.member_id)">+</text>
<u-icon v-else name="checkmark" color="#ffffff" :size="28" class="follow" @click="following(item.member_id)"></u-icon>
<image class="avatar" :src="item.member_avatar"></image>
<text class="follow" @click="following(item.member_id)">{{ is_follow ? "" : "+" }}</text>
</view>
<!-- 点赞 -->
<!-- 点赞 -->
<view class="operat zan">
<u-icon name="thumb-up-fill" :color=" is_like ? '#FF7807' : '#ffffff' " :size="50" @click="likeType(item.article_id)"></u-icon>
<text>{{item.like_num}}</text>
<image class="operat-img" :src=" is_like ? '../../static/image/userinfo/dianzan1.png' : '../../static/image/userinfo/dianzan.png' "
mode="" @click="likeType(item.article_id)"></image>
<text class="operat-span">{{item.like_num}}</text>
</view>
<!-- 收藏 -->
<!-- 收藏 -->
<view class="operat shoucang">
<u-icon name="star-fill" :color=" is_collect ? '#FF7807' : '#ffffff' " :size="50" @click="collecting(item.article_id)"></u-icon>
<text>{{item.collect_num}}</text>
<image class="operat-img" :src=" is_collect ? '../../static/image/userinfo/shoucang1.png' : '../../static/image/userinfo/shoucang.png' "
mode="" @click="collecting(item.article_id)"></image>
<text class="operat-span">{{item.collect_num}}</text>
</view>
<!-- 评论 -->
<!-- 评论 -->
<view class="operat pinglun">
<u-icon name="more-circle-fill" :color=" is_content ? '#FF7807' : '#ffffff' " :size="50" @click="editing()"></u-icon>
<text>{{ comment_num }}</text>
<image class="operat-img" :src=" is_content ? '../../static/image/userinfo/pinglun1.png' : '../../static/image/userinfo/pinglun.png' "
mode="" @click="editing(item.article_id)"></image>
<text class="operat-span">{{ comment_num }}</text>
</view>
<!-- 购物车 -->
<!-- 购物车 -->
<view class="operat gouwu">
<u-icon name="shopping-cart-fill" :color=" is_cart ? '#FF7807' : '#ffffff' " :size="50" @click="carting()"></u-icon>
<image class="operat-img" :src=" is_cart ? '../../static/image/userinfo/gouwuche1.png' : '../../static/image/userinfo/gouwuche.png' "
mode="" @click="carting()"></image>
</view>
</view>
</template>
<style lang="scss" scoped>
.userinfo{
width: 110rpx;
height: 570rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
.userhead{
position: relative;
.userinfo {
width: 110rpx;
height: 570rpx;
/* #ifndef APP-PLUS-NVUE */
display: flex;
/* #endif */
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.userhead {
position: relative;
/* #ifndef APP-PLUS-NVUE */
display: flex;
/* #endif */
position: relative;
align-items: center;
&>image{
width: 110rpx;
height: 110rpx;
border-radius: 50%;
border: 2rpx solid #fff;
}
.follow {
position: absolute;
top: 90rpx;
left: 35%;
width: 36rpx;
height: 36rpx;
text-align: center;
line-height: 36rpx;
font-size: 36rpx;
border-radius: 50%;
color: #fff;
background-color: #FF780F;
}
}
.operat {
display: flex;
align-items: center;
flex-direction: column;
& > text {
margin-top: 10rpx;
font-size: 28rpx;
color: #fff;
}
}
}
.avatar {
width: 110rpx;
height: 110rpx;
border-radius: 50%;
/* #ifndef APP-PLUS-NVUE */
border: 2rpx solid #fff;
/* #endif */
}
.follow {
position: absolute;
top: 90rpx;
left: 40rpx;
width: 36rpx;
height: 36rpx;
text-align: center;
line-height: 36rpx;
font-size: 36rpx;
border-radius: 50%;
color: #fff;
background-color: #FF780F;
}
.operat {
/* #ifndef APP-PLUS-NVUE */
display: flex;
/* #endif */
align-items: center;
flex-direction: column;
}
.operat-span {
margin-top: 10rpx;
font-size: 28rpx;
color: #fff;
}
.operat-img {
width: 50rpx;
height: 50rpx;
}
</style>
<script>
export default {
name:'userinfo',
props:['list','cart','comment','num'],
data(){
return {
is_follow: this.list.is_attention || false,
is_like: this.list.is_like || false,
is_collect: this.list.is_collect || false,
is_content: false,
is_cart: false,
comment_num: this.list.comment_num || 0,
item: this.list || {}
}
},
watch: {
list(newValue,old) {
// console.log(newValue,old);
this.item = newValue || {};
this.is_follow = this.list.is_attention || false;
this.is_like = this.list.is_like || false;
this.is_collect = this.list.is_collect || false;
this.comment_num = this.list.comment_num || 0;
},
cart(newValue,old) {
// console.log(newValue);
this.is_cart = newValue;
},
comment(newValue,old) {
// console.log(newValue,old);
this.is_content = newValue;
},
num(newVal,old) {
// console.log(newVal);
this.comment_num = newVal;
// this.item.comment_num = newVal;
export default {
name: 'userinfo',
props: ['list', 'cart', 'comment', 'num'],
data() {
return {
is_follow: this.list.is_attention || false,
is_like: this.list.is_like || false,
is_collect: this.list.is_collect || false,
is_content: false,
is_cart: false,
comment_num: this.list.comment_num || 0,
item: this.list || {}
}
},
deep: true
},
methods: {
// 关注
following(id) {
this.$u.api.attentionMember({member_id: id}).then(res => {
if (res.errCode == 0) {
this.is_follow = !this.is_follow;
this.$u.toast(res.message);
}
})
},
// 点赞
likeType(id) {
// console.log(id);
this.$u.post("article/articleLike",{article_id: id}).then(res => {
if (res.errCode == 0) {
// console.log(res);
this.is_like = !this.is_like;
this.list.like_num = res.data.num;
} else {
this.$u.toast(res.message);
}
})
},
// 收藏
collecting(id) {
this.$u.post("article/articleCollect",{article_id: id}).then(res => {
if (res.errCode == 0) {
// console.log(res);
this.is_collect = !this.is_collect;
this.list.collect_num = res.data.num;
} else {
this.$u.toast(res.message);
}
})
},
// 评论
editing() {
this.is_content = !this.is_content;
// console.log(this.is_content);
this.$emit("openCart",{ comment: this.is_content, cart: this.is_cart});
},
// 购物车
carting() {
this.is_cart = !this.is_cart;
// console.log(this.is_cart);
this.$emit("openCart",{ comment: this.is_content, cart: this.is_cart});
},
}
}
</script>
watch: {
list(newValue, old) {
console.log(newValue);
this.item = newValue || {};
this.is_follow = this.list.is_attention || false;
this.is_like = this.list.is_like || false;
this.is_collect = this.list.is_collect || false;
this.comment_num = this.list.comment_num || 0;
},
cart(newValue, old) {
// console.log(newValue);
this.is_cart = newValue;
},
comment(newValue, old) {
// console.log(newValue,old);
this.is_content = newValue;
},
num(newVal, old) {
// console.log(newVal);
this.comment_num = newVal;
// this.item.comment_num = newVal;
},
deep: true
},
methods: {
// 关注
following(id) {
uni.request({
url: "https://dmmall.sdbairui.com/api/member/attentionMember",
method: "POST",
data: {
member_id: id
},
header: {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
},
success: (res) => {
if (res.data.errCode == 0) {
this.is_follow = !this.is_follow;
console.log(this.is_follow);
uni.showToast({
title: res.data.data.message,
icon: "none"
})
}
}
})
},
// 点赞
likeType(id) {
// console.log(id);
uni.request({
url: "https://dmmall.sdbairui.com/api/article/articleLike",
method: "POST",
data: {
article_id: id
},
header: {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
},
success: (res) => {
console.log(res);
if (res.data.errCode == 0) {
// console.log(res);
this.is_like = !this.is_like;
this.list.like_num = res.data.data.num;
} else {
uni.showToast({
title: res.data.message,
icon: "none"
})
}
}
})
},
// 收藏
collecting(id) {
uni.request({
url: "https://dmmall.sdbairui.com/api/article/articleCollect",
method: "POST",
data: {
article_id: id
},
header: {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
},
success: (res) => {
console.log(res);
if (res.data.errCode == 0) {
console.log(res.data.num);
this.is_collect = !this.is_collect;
this.list.collect_num = res.data.data.num;
} else {
uni.showToast({
title: res.data.message,
icon: "none"
})
}
}
})
},
// 评论
editing() {
this.is_content = !this.is_content;
// console.log(this.is_content);
this.$emit("openCart", {
comment: this.is_content,
cart: this.is_cart
});
},
// 购物车
carting() {
this.is_cart = !this.is_cart;
// console.log(this.is_cart);
this.$emit("openCart", {
comment: this.is_content,
cart: this.is_cart
});
},
}
}
</script>

View File

@@ -56,7 +56,7 @@
</view>
</block>
<view class="no-data" v-if="!commentList.length">还没有评论快来评论吧</view>
<u-loadmore v-else :status="status" icon-type="iconType" margin-top="50" margin-bottom="50" :load-text="loadText" />
<u-loadmore v-else class="load-size" :status="status" size="20" icon-type="iconType" margin-top="50" margin-bottom="50" :load-text="loadText" />
</scroll-view>
<view class="editing" @touchend.prevent="openKeyInput">
<input type="text" value="" :placeholder="edit_text" disabled="disabled" />
@@ -392,7 +392,7 @@
</style>
<script>
import userinfo from "../components/userinfo/index" // 点赞组件
import contentBox from "../components/shpoone/index" // 评论
// import contentBox from "../components/shpoone/index" // 评论
// import shoplist from "../components/shoplist/index" // 商品列表
export default {

View File

@@ -597,7 +597,7 @@ export default {
background-color: #EEEBEE;
.spike-view {
position: absolute;
top: 396rpx;
top: 400rpx;
left: 0;
width: 100%;
height: 104rpx;
@@ -1015,13 +1015,13 @@ export default {
}
}
.spike-tool {
z-index: 10076;
display: flex;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 98rpx;
display: flex;
z-index: 10076;
height: 100rpx;
background-color: #FFFFFF;
.left {
width: 190rpx;
@@ -1044,8 +1044,8 @@ export default {
}
.btn {
flex: 1;
height: 98rpx;
line-height: 98rpx;
height: 104rpx;
line-height: 104rpx;
text-align: center;
font-size: 32rpx;
color: rgba(255,255,255,1);

View File

@@ -1,16 +1,18 @@
<template>
<view>
<video id="videoId" :style="videoSize" :src="src" autoplay="true" :loop="true" :show-fullscreen-btn="false" @play="playing"
<video id="videoId" :style="videoSize" :src="src" autoplay="true" :show-fullscreen-btn="false" @play="playing" @timeupdate="timeupdate"
:show-play-btn="false" controls="false" @click="stoping" :enable-progress-gesture="false"></video>
<cover-image class="close" @click="goBack" src="../../static/close.png">
</cover-image>
<cover-view class="" src="../../static/videoPlay.png">
</cover-view>
<cover-image class="pause" @click="stoping" src="../../static/videoPlay.png" v-if="!is_play">
</cover-image>
<!-- 用户操作 -->
<userinfo class="user-info" :list="list" :cart="cart_type" :comment="is_comment" :num="comment_num" @openCart="openPopup"></userinfo>
<cover-view class="info-box">
<view class="video-info-box">
<image class="image-play" src="../../static/videoPlay.png" mode=""></image>
<image class="image-play" src="../../static/videoIcon.png" mode=""></image>
<text class="video-slip">视频</text>
<text class="time">{{ time_count }}s</text>
<text class="time">{{ time_count == 1 ? 0 : time_count }}s</text>
</view>
<view>
<text class="name">@{{ list.member_nickname }}</text>
@@ -23,7 +25,7 @@
</view>
<view class="label-box">
<block v-for="(item,index) in list.label" :key="index">
<text class="label" :style="{ width: item.name.length * 40 + 'rpx' }">{{ item.name }}</text>
<text class="label" :style="{ width: labelLen[index] * 40 + 'rpx' }">{{ item.name }}</text>
</block>
</view>
</cover-view>
@@ -31,22 +33,28 @@
</template>
<script>
import userinfo from "../components/userinfo/index" // 点赞组件
export default {
components:{
userinfo
},
data() {
return {
videoSize: {},
list: {},
labelLen: [],
cart_type: false, // 显示购物车
is_comment: false, // 显示评论
comment_num: 0, // 评论数
src: "",
is_play: true,
timer: null,
alltime: 7,
time_count: 7,
time_count: 0,
linear: null,
};
},
onLoad(option) {
this.getVideoInfo(option.id);
this.getInfo();
this.aaa();
},
onReady() {
this.videoBox = uni.createVideoContext("videoId", this);
@@ -60,9 +68,24 @@
data: {
article_id: article_id
},
header: {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
},
success: (res) => {
this.list = res.data.data.info;
this.src = res.data.data.info.video_path;
let item = res.data.data.info.label;
let arr = [];
item.forEach(data => {
let str = escape(data.name);
if(str.indexOf('%u')){
// console.log(data.name);
arr.push(Math.floor(data.name.length / 2));
} else {
arr.push(data.name.length);
}
})
this.labelLen = arr;
}
})
},
@@ -79,11 +102,8 @@
},
// 播放
playing(e) {
console.log(e);
// console.log(e);
if (e.type == "play") {
this.alltime = 7;
this.time_count = 7;
this.aaa();
}
},
// 暂停
@@ -91,24 +111,19 @@
this.is_play = !this.is_play;
if (this.is_play) {
this.videoBox.play();
this.aaa();
} else {
this.videoBox.pause();
clearInterval(this.timer);
this.temp_time = this.time_count;
console.log(this.temp_time);
}
},
// 倒计时
aaa() {
this.timer = setInterval(() => {
if (this.time_count > 0 && this.time_count <= this.alltime) {
this.time_count--;
} else {
clearInterval(this.timer);
this.timer = null;
}
}, 1000);
// 监听视频
timeupdate(e) {
this.time_count = parseInt(e.detail.duration) - parseInt(e.detail.currentTime);
if (e.detail.duration == e.detail.currentTime) {
this.is_play = false;
}
// let num = parseInt((e.detail.currentTime/e.detail.duration)*100);
// this.linear = num + "%";
// console.log(this.time_count);
},
goBack() {
uni.navigateBack({
@@ -128,7 +143,23 @@
width: 30rpx;
height: 30rpx;
}
/* 暂停 */
.pause {
position: fixed;
top: 600rpx;
left: 330rpx;
width: 100rpx;
height: 100rpx;
}
/* 用户操作 */
.user-info {
position: fixed;
top: 360rpx;
right: 30rpx;
}
/* 底部信息 */
.info-box {
position: fixed;