123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- <template>
- <view class="container">
- <JHeader title="我的评价" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view>
- <!-- 我的评论 -->
- <view class="evaluateTitle-box flex-row-plus flex-sp-around">
- <view class="allEvaluate" :class="{ 'evaluateTitle-on': currentTab == 0 }" @click="handleChangeTab(0)">
- 全部评价({{ myCommentListData.total || 0 }})
- </view>
- <view class="centerLine">|</view>
- <view :class="{ 'evaluateTitle-on': currentTab == 1 }" @click="handleChangeTab(1)">
- 有图({{ myCommentListData.imageTotal || 0 }})
- </view>
- </view>
- <view v-if="currentTab == 0" class="mar-top-20">
- <view v-if="commentInfo.data && commentInfo.data.length">
- <view
- v-for="(item, index) in commentInfo.data.filter((item) => !item.isLoading)" :key="index"
- class="evaluate-contentbox" @click="commentDetails(index)"
- >
- <view class="evaluate-content flex-items flex-row flex-sp-between ">
- <view class="flex-items">
- <image v-if="item.headImage" class="user-headSmallImg" :src="common.seamingImgUrl(item.headImage)">
- </image>
- <image v-else class="user-headSmallImg" src="../../../static/images/new-user/default-user-avatar.png">
- </image>
- <view class="skuValue">
- <label v-if="item.name" class="fs28">{{ item.name }}</label>
- <label v-else class="fs28">匿名</label>
- <view class="fs22 font-color-999 mar-top-10">
- {{ item.value }}
- </view>
- </view>
- </view>
- <view v-if="item.addComment == ''" class="addCommentsBut" @click.stop="addCommentsClick(index)">追加评价</view>
- </view>
- <view class="fs26 pad-topbot-20" style="margin-top: 10rpx">{{ item.comment }}</view>
- <view v-if="item.image" class="evaluateImg-box">
- <view v-for="(cItem, index) in commentImgData(item.image)" :key="index">
- <image class="evaluate-Img" :src="common.seamingImgUrl(cItem)"></image>
- </view>
- </view>
- <view v-if="item.addComment" class="addComments-box flex-column-plus">
- <label class="font-color-C5AA7B mar-top-30">用户追评</label>
- <label class="mar-top-20">{{ item.addComment }}</label>
- <view v-if="item.addImage" class="evaluateImg-box mar-top-20">
- <view v-for="(dItem, index) in commentImgData(item.addImage)" :key="index">
- <image class="evaluate-Img" :src="common.seamingImgUrl(dItem)"></image>
- </view>
- </view>
- </view>
- <view class="goodsDes-box flex-column-plus mar-top-30">
- <view class="flex-row-plus" @click.stop="goGoodsDetails(item.shopId, item.productId, item.skuId)">
- <image class="goodsDes-img default-img" :src="common.seamingImgUrl(item.productImage)"></image>
- <view class="goodsDesText-box">
- <label class="fs26 goodsDes-text">{{ item.productName }}</label>
- <view class="mar-top-70">
- <label>¥ {{ item.productPrice }}</label>
- </view>
- </view>
- </view>
- </view>
- <view class="flex-items flex-row mar-top-30 flex-sp-between">
- <view class="font-color-999 fs22">{{ item.createTime }}</view>
- <view class="praise-box flex-items flex-row">
- <tui-icon
- v-if="item.ifLike" :size="30" color="#c5aa7b" name="agree"
- @click="zanTap(index, item.commentId, 0)"
- ></tui-icon>
- <tui-icon
- v-else :size="30" color="#cccccc" name="agree"
- @click="zanTap(index, item.commentId, 1)"
- ></tui-icon>
- <label class="mar-left-10">{{ item.likes }}</label>
- </view>
- </view>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!commentInfo.isEmpty && !commentInfo.data.length
- ? 'loading' : !commentInfo.isEmpty && commentInfo.data.length && (commentInfo.data.length >= commentInfo.listTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="commentInfo.isEmpty" :fixed="false" style="margin-top: 60upx;">你还没有评论哦~</tui-no-data>
- </view>
- </view>
- <view v-if="currentTab == 1" class="mar-top-20">
- <view v-if="commentPicInfo.data && commentPicInfo.data.length">
- <view
- v-for="(item, index) in commentPicInfo.data.filter((item) => !item.isLoading)" :key="index"
- class="evaluate-contentbox"
- >
- <view class="evaluate-content flex-column" @click="commentDetails(index)">
- <view class="flex-items">
- <image v-if="item.headImage" class="user-headSmallImg" :src="common.seamingImgUrl(item.headImage)">
- </image>
- <image v-else class="user-headSmallImg" src="../../../static/images/new-user/default-user-avatar.png">
- </image>
- <label v-if="item.name" class="fs28 mar-left-20">{{ item.name }}</label>
- <label v-else class="fs28 mar-left-20">匿名</label>
- </view>
- <view class="fs22 font-color-999 mar-top-10">
- {{ item.value }}
- </view>
- <view class="fs26 pad-topbot-20">{{ item.comment }}</view>
- <view v-if="item.image" class="evaluateImg-box">
- <view v-for="(cItem, index) in commentImgData(item.image)" :key="index">
- <image class="evaluate-Img" :src="common.seamingImgUrl(cItem)"></image>
- </view>
- </view>
- <view v-if="item.addComment" class="addComments-box flex-column-plus">
- <label class="font-color-C5AA7B mar-top-30">用户追评</label>
- <label class="mar-top-20">{{ item.addComment }}</label>
- <view v-if="item.addImage" class="evaluateImg-box mar-top-20">
- <view v-for="(dItem, index) in commentImgData(item.addImage)" :key="index">
- <image class="evaluate-Img" :src="common.seamingImgUrl(dItem)"></image>
- </view>
- </view>
- </view>
- <view class="flex-items flex-row mar-top-30 flex-sp-between">
- <view class="font-color-999 fs22">{{ item.createTime }}</view>
- <view class="praise-box flex-items flex-row">
- <tui-icon
- v-if="item.ifLike" :size="30" color="#c5aa7b" name="agree"
- @click="zanTap(index, item.commentId, 0)"
- ></tui-icon>
- <tui-icon
- v-else :size="30" color="#cccccc" name="agree"
- @click="zanTap(index, item.commentId, 1)"
- ></tui-icon>
- <label class="mar-left-10">{{ item.likes }}</label>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!commentPicInfo.isEmpty && !commentPicInfo.data.length
- ? 'loading' : !commentPicInfo.isEmpty && commentPicInfo.data.length && (commentPicInfo.data.length >= commentPicInfo.listTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="commentPicInfo.isEmpty" :fixed="false" style="margin-top: 60upx;">你还没有评论哦~</tui-no-data>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { getAllMyCommentListApi, updateLikeOrUnLikeCommentApi } from '../../../api/anotherTFInterface'
- export default {
- name: 'UserEvaluate',
- data() {
- return {
- currentTab: 0,
- commentInfo: {
- query: {
- page: 1,
- pageSize: 10
- },
- data: [],
- listTotal: 0,
- isEmpty: false
- },
- commentPicInfo: {
- query: {
- page: 1,
- pageSize: 10
- },
- data: [],
- listTotal: 0, // 列表数据总数
- isEmpty: false // 列表是否为空
- },
- myCommentListData: {}
- }
- },
- onLoad() {
- this.getMyCommentList()
- },
- methods: {
- commentImgData(imgData) {
- let imgDataResult = []
- imgDataResult = imgData.split(',')
- return imgDataResult
- },
- handleChangeTab(index) {
- this.currentTab = index
- // 缓存每个tab里的数据
- if (this.currentTab === 0) {
- } else if (this.currentTab === 1) {
- if (!this.commentPicInfo.isEmpty && !this.commentPicInfo.data.length) this.getMyCommentPicList()
- }
- // 每点一个tab就重新进行对它的请求
- // if (this.currentTab === 0) {
- // this.commentInfo.query.page = 1
- // this.commentInfo.data = []
- // this.commentInfo.listTotal = 0
- // this.commentInfo.isEmpty = false
- // this.getIntegralList()
- // } else if (this.currentTab === 1) {
- // this.commentPicInfo.query.page = 1
- // this.commentPicInfo.data = []
- // this.commentPicInfo.listTotal = 0
- // this.commentPicInfo.isEmpty = false
- // this.getMyCommentPicList()
- // }
- },
- // 我的评价列表
- getMyCommentList(isLoadmore) {
- uni.showLoading({
- title: '加载中'
- })
- getAllMyCommentListApi({ ...this.commentInfo.query, state: this.currentTab ? this.currentTab : '' })
- .then((res) => {
- this.myCommentListData = res.data
- this.commentInfo.listTotal = res.data.page.total
- if (isLoadmore) {
- this.commentInfo.data.push(...res.data.page.list)
- } else {
- this.commentInfo.data = res.data.page.list
- }
- this.commentInfo.isEmpty = this.commentInfo.data.length === 0
- uni.hideLoading()
- })
- .catch(() => {
- uni.hideLoading()
- })
- },
- getMyCommentPicList(isLoadmore) {
- uni.showLoading({
- title: '加载中'
- })
- getAllMyCommentListApi({ ...this.commentPicInfo.query, state: this.currentTab ? this.currentTab : '' })
- .then((res) => {
- this.myCommentListData = res.data
- this.commentPicInfo.listTotal = res.data.page.total
- if (isLoadmore) {
- this.commentPicInfo.data.push(...res.data.page.list)
- } else {
- this.commentPicInfo.data = res.data.page.list
- }
- this.commentPicInfo.isEmpty = this.commentPicInfo.data.length === 0
- uni.hideLoading()
- })
- .catch(() => {
- uni.hideLoading()
- })
- },
- // 点赞
- zanTap(index, likeId, actionType) {
- uni.showLoading()
- updateLikeOrUnLikeCommentApi({
- commentId: likeId,
- ifLike: actionType
- }).then((res) => {
- if (this.currentTab === 0) {
- this.commentInfo.data[index].ifLike = !this.commentInfo.data[index].ifLike
- this.commentInfo.data[index].likes = this.commentInfo.data[index].ifLike ? this.commentInfo.data[index].likes + 1 : this.commentInfo.data[index].likes - 1
- } else if (this.currentTab === 1) {
- this.commentPicInfo.data[index].ifLike = !this.commentPicInfo.data[index].ifLike
- this.commentPicInfo.data[index].likes = this.commentPicInfo.data[index].ifLike ? this.commentPicInfo.data[index].likes + 1 : this.commentPicInfo.data[index].likes - 1
- }
- uni.hideLoading()
- })
- .catch((e) => {
- uni.hideLoading()
- })
- },
- goGoodsDetails(shopId, productId, skuId) {
- uni.navigateTo({
- url: '/another-tf/another-serve/goodsDetails/index?shopId=' + shopId + '&productId=' + productId + '&skuId=' + skuId
- })
- },
- commentDetails(index) {
- uni.redirectTo({
- url: '/another-tf/another-serve/evaluateDetails/index',
- success: () => {
- if (this.currentTab === 0) uni.$emit('sendEvaluateDetailsMsg', { detailsCommentVOData: this.commentInfo.data[index] })
- else if (this.currentTab === 1) uni.$emit('sendEvaluateDetailsMsg', { detailsCommentVOData: this.commentPicInfo.data[index] })
- }
- })
- },
- // 追加评论
- addCommentsClick(index) {
- uni.redirectTo({
- url: '/another-tf/another-serve/addEvaluate/index?type=2',
- success: () => {
- if (this.currentTab === 0) uni.$emit('sendAddEvaluateMsg', { addCommentVOData: this.commentInfo.data[index], commentId: '' })
- else if (this.currentTab === 1) uni.$emit('sendAddEvaluateMsg', { addCommentVOData: this.commentPicInfo.data[index], commentId: '' })
- }
- })
- }
- },
- onReachBottom() {
- if (this.currentTab === 0) {
- if (this.commentInfo.data.length < this.commentInfo.listTotal) {
- ++this.commentInfo.query.page
- this.getMyCommentList(true)
- }
- } else if (this.currentTab === 1) {
- if (this.commentPicInfo.data.length < this.commentPicInfo.listTotal) {
- ++this.commentPicInfo.query.page
- this.getMyCommentPicList(true)
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .container {
- background-color: #FFFFFF;
- min-height: 100vh;
- box-sizing: border-box;
- .evaluateTitle-box {
- color: #CCCCCC;
- margin-top: 26upx;
- border-bottom: 2rpx solid #F3F4F5;
- .evaluateTitle-on {
- padding-bottom: 20upx;
- border-bottom: 4upx solid #C5AA7B;
- color: #333333;
- }
- }
- .evaluate-contentbox {
- display: flex;
- justify-content: center;
- flex-direction: column;
- padding: 30upx 30upx;
- margin: 10rpx 10rpx;
- background-color: #FFFFFF;
- border-bottom: 2rpx solid #F3F4F5;
- .evaluate-content {
- width: 670upx;
- display: flex;
- justify-content: space-between;
- .user-headSmallImg {
- width: 46upx;
- height: 46upx;
- border-radius: 50%;
- }
- .skuValue {
- text-align: left;
- padding-left: 30rpx;
- }
- }
- .evaluateImg-box {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- margin-left: -9upx;
- .evaluate-Img {
- width: 224upx;
- height: 224upx;
- border-radius: 10upx;
- margin-left: 9upx;
- margin-top: 9upx;
- }
- }
- .goodsDes-box {
- background-color: #F7F7F7;
- padding: 20upx 44upx 20upx 20upx;
- .goodsDes-img {
- width: 180upx;
- height: 180upx;
- border-radius: 10upx;
- }
- .goodsDesText-box {
- width: 416upx;
- margin-left: 30upx;
- }
- }
- .addComments-box {
- border-top: 1upx solid #EEEEEE;
- margin-top: 35upx;
- }
- }
- .addCommentsBut {
- width: 140upx;
- height: 58upx;
- background: #333333;
- font-size: 26upx;
- line-height: 58upx;
- text-align: center;
- color: #C5AA7B;
- }
- }
- </style>
|