You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
<template>
|
|
<view class="page">
|
|
<!--评价筛选-->
|
|
<view class="evaluate-filtrate">
|
|
<view class="filtrate-list">
|
|
<view class="list">
|
|
<text class="action">全部1</text>
|
|
</view>
|
|
<view class="list">
|
|
<text>好评1</text>
|
|
</view>
|
|
<view class="list">
|
|
<text>中评0</text>
|
|
</view>
|
|
<view class="list">
|
|
<text>中评0</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="evaluate-data">
|
|
<view class="evaluate-list">
|
|
<view class="list" v-for="(item,index) in 1" :key="index">
|
|
<view class="user-info">
|
|
<view class="thumb">
|
|
<image src="/static/img/user_pic.jpg" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="nickname-grade">
|
|
<view class="nickname">
|
|
<text>爱笑的汤姆</text>
|
|
</view>
|
|
<view class="grade">
|
|
<view class="star">
|
|
<text class="cuIcon-favorfill lg text-gray" v-for="(value,idx) in 1" :key="idx"></text>
|
|
</view>
|
|
<view class="date">
|
|
<text>2023-10-09</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="content">
|
|
<view class="character">
|
|
<text class="two-omit">好</text>
|
|
</view>
|
|
|
|
<view class="thumb-list">
|
|
<view class="video-info" @click="isVideoShow = true">
|
|
<image src="/static/image/x.png" class="picture"></image>
|
|
|
|
</view>
|
|
<!-- <view class="list" v-for="(value,idx) in 8"
|
|
@click="onPreview(value,idx)"
|
|
:key="idx">
|
|
<image :src="'/static/img/goods_thumb_0'+(idx+1)+'.png'"></image>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
isVideoShow: false,
|
|
|
|
videoContext: '',
|
|
};
|
|
},
|
|
onReady: function (res) {
|
|
this.videoContext = uni.createVideoContext('evaluate-video')
|
|
},
|
|
onLoad(){
|
|
|
|
},
|
|
methods:{
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "GoodsEvaluateList.scss";
|
|
</style>
|
|
|