123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- <template>
- <div class="good-evaluate-and-question-container">
- <view class="evaQaTab flex-items flex-sp-around">
- <view :class="{ active: activeTab === 1 }" class="evaBtn" @click="activeTab = 1">
- <view class="tabTit">宝贝评价({{ goodsDetail.comments.length }})</view>
- </view>
- <view :class="{ active: activeTab === 2 }" class="qaBtn" @click="activeTab = 2">
- <view class="tabTit">商品问答({{ problemsTotal }})</view>
- </view>
- </view>
- <!-- 评价 -->
- <view class="borRig-line-20"></view>
- <view v-show="activeTab === 1" class="evaluate-box flex-start flex-column">
- <view v-if="goodsDetail.comments.length > 0" class="evaluateTag-box">
- <view class="evaluateTag-text">
- 全部({{ goodsDetail.comments.length }})
- </view>
- </view>
- <view
- v-for="(commentItem, commentIndex) in goodsDetail.comments.slice(0, 2)" :key="commentIndex"
- class="evaluate-contentbox mar-top-30"
- >
- <view class="evaluate-content flex-items flex-row flex-sp-between">
- <view class="flex-items">
- <image class="user-headSmallImg" :src="common.seamingImgUrl(commentItem.headImage)"></image>
- <label class="fs28 mar-left-20">{{ commentItem.name }}</label>
- </view>
- <label class="font-color-999 fs22">{{ commentItem.createTime }}</label>
- </view>
- <view class="evaluateDes-box">
- <label class="evaluateDes">{{ commentItem.comment }}</label>
- </view>
- <view v-if="commentItem.image" class="item-image-box">
- <view v-for="(imgItem, imgIndex) in (commentItem.image.split(',') || [])" :key="imgIndex">
- <image
- class="img-item" :src="common.seamingImgUrl(imgItem)"
- @click="handlePreviewImage(goodsDetail.comments[commentIndex].images, imgIndex)"
- >
- </image>
- </view>
- </view>
- <view class="item-line"></view>
- <view v-if="commentItem.addComment !== ''" class="item-like-box">
- <view class="addEvaluate">
- <view>追加评价:{{ commentItem.addComment }}</view>
- <view v-if="commentItem.addImages" class="item-image-box">
- <view v-for="(itemAddImg, imgIndex) in commentItem.addImages" :key="imgIndex">
- <image
- class="img-item" :src="common.seamingImgUrl(itemAddImg)"
- @click="handlePreviewImage(goodsDetail.comments[commentIndex].addImages, imgIndex)"
- >
- </image>
- </view>
- </view>
- </view>
- </view>
- <view class="like-box">
- <tui-icon
- v-if="commentItem.ifLike === 1" :size="24" color="#c5aa7b" name="agree"
- @click="handlePraise(commentItem, 0)"
- ></tui-icon>
- <tui-icon v-else :size="24" color="#cccccc" name="agree" @click="handlePraise(commentItem, 1)"></tui-icon>
- <view class="like-num">{{ commentItem.likes }}</view>
- </view>
- </view>
- <view
- v-if="goodsDetail.comments.length > 0" class="moreBox"
- @click="go(`/another-tf/another-serve/evaluateList/index?shopId=${goodsDetail.shopId}&productId=${goodsDetail.productId}&skuId=${goodsDetail.skuId}`)"
- >
- <label class="fs24">查看全部</label>
- <tui-icon :size="24" color="#baa174" name="arrowright" margin="0 0 0 10upx"></tui-icon>
- </view>
- </view>
- <!-- 问答 -->
- <view class="borRig-line-20"></view>
- <view v-show="activeTab === 2" class="questions">
- <view class="questionInfo flex-items flex-row flex-sp-between">
- <view class="infoTit">宝贝好不好,问问已买过的人</view>
- <view
- class="putQuestion"
- @click="go(`/another-tf/another-serve/putQuestions/index?shopId=${goodsDetail.shopId}&productId=${goodsDetail.productId}&skuId=${goodsDetail.skuId}&questionNumber=${problemsList.length}`)"
- >
- <text>去提问</text>
- <tui-icon :size="30" color="#d9c9a8" name="arrowright"></tui-icon>
- </view>
- </view>
- <view class="listBox">
- <QuestionsAndAnswersList :product-info="goodsDetail" :problems-list="problemsList" />
- <view
- v-if="problemsList.length > 0" class="moreBox"
- @click="go(`/another-tf/another-serve/answerList/index?shopId=${goodsDetail.shopId}&productId=${goodsDetail.productId}&skuId=${goodsDetail.skuId}`)"
- >
- <label class="fs24">查看全部</label>
- <tui-icon :size="24" color="#baa174" name="arrowright" margin="0 0 0 10upx"></tui-icon>
- </view>
- </view>
- </view>
- </div>
- </template>
- <script>
- import lodash from 'lodash-es'
- import QuestionsAndAnswersList from './QuestionsAndAnswersList'
- import { getProblemsSeckillApi, updateLikeOrUnLikeCommentApi } from '../../../../api/anotherTFInterface'
- export default {
- name: 'GoodEvaluateAndQuestion',
- components: { QuestionsAndAnswersList },
- props: {
- goodsDetail: {
- type: Object,
- default: () => ({})
- }
- },
- data() {
- return {
- // 当前选中的tab
- activeTab: 1, // 1评价 2问答
- problemsList: [], // 问题列表
- problemsTotal: 0 // 问题总数
- }
- },
- mounted() {
- this.handleGetProblemList()
- },
- methods: {
- /**
- * 获取问答数据
- * @return {Promise<void>}
- */
- async handleGetProblemList() {
- if (!this.goodsDetail.productId) {
- return
- }
- const res = await getProblemsSeckillApi({
- productId: this.goodsDetail.productId,
- page: 1,
- pageSize: 2
- })
- this.problemsList = res.data.list
- this.problemsTotal = res.data.total
- },
- /**
- * 放大查看照片
- * @param dataList 所有照片
- * @param currentIndex 选中索引
- */
- handlePreviewImage(dataList, currentIndex) {
- uni.previewImage({
- current: dataList[currentIndex],
- urls: dataList
- })
- },
- /**
- * 点赞
- * @param commentItem 当前评论项
- * @param action 0取消1点赞
- */
- handlePraise: lodash.debounce(async function (commentItem, actionType) {
- uni.showLoading({
- mask: true,
- title: '提交中...'
- })
- try {
- await updateLikeOrUnLikeCommentApi({
- commentId: commentItem.commentId,
- ifLike: actionType
- })
- if (commentItem.ifLike === 1) {
- commentItem.ifLike = 0
- commentItem.likes--
- } else {
- commentItem.ifLike = 1
- commentItem.likes++
- }
- } finally {
- uni.hideLoading()
- }
- }, 500)
- }
- }
- </script>
- <style lang="less" scoped>
- .good-evaluate-and-question-container {
- background-color: #ffffff;
- .evaQaTab {
- height: 82rpx;
- line-height: 82rpx;
- border-bottom: #F3F4F5 solid 2rpx;
- font-size: 30rpx;
- color: #CCCCCC;
- .evaBtn {
- width: 50%;
- position: relative;
- text-align: center;
- &:before {
- content: '';
- width: 2rpx;
- height: 30rpx;
- background: #CCCCCC;
- display: block;
- position: absolute;
- right: 0;
- top: 20rpx;
- }
- }
- .qaBtn {
- width: 50%;
- text-align: center;
- }
- .tabTit {
- display: inline-block;
- height: 82rpx;
- line-height: 82rpx;
- }
- .active {
- color: #333333;
- .tabTit {
- border-bottom: 4rpx solid #444444;
- }
- }
- }
- .questions {
- .questionInfo {
- padding: 0 30upx;
- min-height: 150upx;
- .infoTit {
- font-size: 28upx;
- }
- .putQuestion {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 140upx;
- height: 60upx;
- background: #333333;
- line-height: 60upx;
- font-size: 24upx;
- color: #FFEBC4;
- padding-left: 20rpx;
- position: relative;
- }
- }
- .listBox {
- padding: 0 30upx;
- border-bottom: 20upx solid #EEEEEE;
- }
- }
- .evaluate-box {
- background-color: #FFFFFF;
- margin-top: 20upx;
- .evaluateTag-box {
- margin-top: 10upx;
- margin-left: 10upx;
- padding-bottom: 10upx;
- display: flex;
- flex-wrap: wrap;
- .evaluateTag-text {
- background-color: #F4F4F4;
- border-radius: 6upx;
- padding: 16upx 14upx;
- color: #656565;
- margin-left: 20upx;
- margin-top: 20upx;
- }
- }
- .evaluate-contentbox {
- display: flex;
- justify-content: center;
- flex-direction: column;
- margin-left: 30upx;
- // border-bottom: 1upx solid #EDEDED;
- padding-bottom: 50upx;
- .evaluate-content {
- width: 670upx;
- display: flex;
- justify-content: space-between;
- .user-headSmallImg {
- width: 46upx;
- height: 46upx;
- border-radius: 50%;
- }
- }
- .evaluateDes-box {
- width: 670upx;
- margin-top: 30upx;
- .evaluateDes {
- width: 670upx;
- }
- }
- .addEvaluate {
- padding-top: 30upx;
- }
- }
- }
- .item-image-box {
- width: 700upx;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- .img-item {
- width: 223upx;
- height: 223upx;
- border-radius: 10upx;
- margin-right: 10upx;
- margin-top: 10upx;
- }
- }
- .item-line {
- width: 690upx;
- height: 1px;
- background: rgba(238, 238, 238, 1);
- margin-top: 20upx;
- }
- .item-like-box {
- display: flex;
- flex-direction: row;
- width: 690upx;
- align-items: center;
- justify-content: space-between;
- }
- .like-box {
- display: flex;
- flex-direction: row;
- padding-top: 30upx;
- align-items: center;
- justify-content: flex-end;
- margin-right: 50upx;
- .like-num {
- font-size: 28upx;
- font-weight: 500;
- color: rgba(51, 51, 51, 1);
- margin-left: 30upx;
- }
- }
- .moreBox {
- width: 170rpx;
- height: 54rpx;
- line-height: 54rpx;
- margin: 0 auto 50rpx auto;
- border: 2rpx solid #C5AA7B;
- color: #C5AA7B;
- display: flex;
- align-items: center;
- justify-content: center;
- image {
- width: 10rpx;
- height: 20rpx;
- }
- }
- }
- </style>
|