| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- <template>
- <view>
- <view class="wrap">
- <view class="u-tabs-box">
- <u-tabs :list="list" :is-scroll="false" inactive-color="#333" :current="current" class="utabs" :active-color="$lightColor" @change="changeTab"></u-tabs>
- </view>
- <swiper class="swiper-box" :current="current" @change="changeSwiper" duration="500">
- <swiper-item v-for="(item, listIndex) in list" :key="listIndex">
- <scroll-view scroll-y style="height: 100%" @scrolltolower="renderData(listIndex)">
- <u-empty text="尚无需要评价的商品" mode="list" v-if="orderList.length == 0"></u-empty>
- <view class="seller-view" v-for="(order, index) in orderList" :key="index">
- <!-- 店铺名称 -->
- <view class="box-title">
- <view class="title_seller_name">
- {{ order.storeName }}
- </view>
- </view>
- <view v-for="(sku, _index) in order.orderItems" :key="_index">
- <view class="goods-item-view">
- <view>
- <u-image border-radius="6rpx" width="132rpx" height="132rpx" class="goods_img" :src="sku.image" alt />
- </view>
- <view class="goods-info">
- <view class="goods-title u-line-2">{{ sku.name }}</view>
- <view class="text title">{{ gradeList[order.grade] || '' }}</view>
- </view>
- </view>
- <view class="btn-view u-row-between" v-if="current != 0">
- <view class="description">
- <view class="text title">
- <u-read-more ref="uReadMore" :color="$lightColor" text-indent="0">
- <rich-text :nodes="'评论内容:' + order.content || ''"></rich-text>
- </u-read-more>
- </view>
- <view class="goods-imgs-view" v-if="order.image">
- <view class="img-view" v-if="order.image" v-for="(img, imgIndex) in order.image.split(',')" :key="imgIndex">
- <u-image v-if="order.image" @click.native="
- preview(order.image.split(','), imgIndex)
- " width="160rpx" height="160rpx" :src="img"></u-image>
- </view>
- </view>
- </view>
- </view>
- <view class="again-btn" @click="onDetail(order)" v-if="current == 1">
- <u-tag text="评价详情" shape="circle" mode="plain" type="error" />
- </view>
- <view v-if="current == 0 && sku.commentStatus == 'UNFINISHED'">
- <view class="evaluate">
- <view @click="talkCommont(order)">
- <u-tag text="发表评价" shape="circle" mode="plain" type="error" />
- </view>
- </view>
- </view>
- </view>
- </view>
- <uni-load-more :status="params.loadStatus"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- </view>
- </template>
- <script>
- import { getOrderList } from "@/api/order.js";
- import { getComments } from "@/api/members.js";
- export default {
- data() {
- return {
- list: [ //顶部tab
- {
- name: "待评价",
- },
- {
- name: "已评价",
- },
- ],
- gradeList: { //评论表
- GOOD: "好评",
- MODERATE: "中评",
- WORSE: "差评",
- haveImage: "有图",
- },
- current: 0, //当前tabIndex
- orderList: [], //商品集合
- params: {
- pageNumber: 1,
- pageSize: 10,
- loadStatus: "more",
- },
- };
- },
- onShow() {
- this.orderList = [];
- this.params.pageNumber = 1;
- this.current == 0 ? this.loadData() : this.loadComments();
- },
- watch: {
- /**
- * 切换current
- * 更改页面并重新加载数据
- */
- current(val) {
- this.params.pageNumber = 1;
- this.params.loadStatus = "more";
- this.orderList = [];
- //重新读取数据
- if (val == 0) {
- this.loadData();
- }
- if (val == 1) {
- this.orderList = [];
- this.loadComments();
- }
- },
- },
- methods: {
- /**
- * 判断当前店铺是否有可评价的商品
- */
- commentStatus(val) {
- if (this.current == 1) {
- return true;
- } else {
- let show;
- val.orderItems &&
- val.orderItems.forEach((item) => {
- if (item.commentStatus == "UNFINISHED") {
- show = true;
- } else {
- show = false;
- }
- });
- return show;
- }
- },
- /**
- * 点击图片放大或保存
- */
- preview(urls, index) {
- uni.previewImage({
- current: index,
- urls: urls,
- longPressActions: {
- itemList: ["保存图片"],
- success: function (data) {},
- fail: function (err) {},
- },
- });
- },
- /**
- * 点击tab触发
- */
- changeTab(index) {
- this.current = index;
- },
- /**
- * 点击swiper
- */
- changeSwiper(e) {
- this.current = e.target.current;
- },
- /**
- * 获取订单数据
- */
- loadData() {
- uni.showLoading({
- title: "加载中",
- });
- getOrderList(this.params).then((res) => {
- uni.hideLoading();
- const orderList = res.data.result.records;
- if (orderList.length < 10) {
- this.params.loadStatus = "noMore";
- }
- if (orderList.length > 0) {
- this.orderList = this.orderList.concat(orderList);
- this.params.pageNumber += 1;
- }
- });
- },
- /**
- * 发表评价
- */
- talkCommont(order) {
- uni.navigateTo({
- url: `./releaseEvaluate?sn=${order.sn}&order=${encodeURIComponent(
- JSON.stringify(order)
- )}`,
- });
- },
- /**
- * 加载已评价数据
- */
- loadComments() {
- uni.showLoading({
- title: "加载中",
- });
- getComments(this.params).then((res) => {
- uni.hideLoading();
- let orderList = res.data.result.records;
- if (orderList.length < 10) {
- this.params.loadStatus = "noMore";
- }
- orderList.forEach((item) => {
- item.orderItems = [
- {
- image: item.goodsImage,
- name: item.goodsName,
- goodsId: item.goodsId,
- skuId: item.skuId,
- },
- ];
- });
- this.orderList = this.orderList.concat(orderList);
- this.params.pageNumber += 1;
- });
- },
- /**
- * 滑到底部加载数据
- */
- renderData(index) {
- if (this.params.loadStatus == "noMore") return;
- if (index == 0) {
- this.loadData();
- }
- if (index == 1) {
- this.params.audit_status = "PASS_AUDIT";
- this.params.comments_type = "INITIAL";
- this.params.comment_status = "WAIT_CHASE";
- this.loadComments();
- }
- },
- /**
- * 评价详情
- */
- onDetail(comment) {
- uni.navigateTo({
- url:
- "./evaluateDetail?comment=" +
- encodeURIComponent(JSON.stringify(comment)),
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- page {
- height: 100%;
- }
- .wrap {
- background: #f6f6f6;
- height: calc(100vh - var(--window-top));
- width: 100%;
- }
- .goods-imgs-view {
- margin: 20rpx 0;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: center;
- .img-view {
- margin-right: 15rpx;
- }
- }
- .u-tabs-box {
- position: relative;
- z-index: 10;
- }
- .box-content {
- margin: 20rpx 0;
- }
- .title_seller_name {
- font-weight: 700;
- font-size: 28rpx;
- color: #333;
- padding-left: 0 !important;
- }
- .box-title {
- height: 90rpx;
- line-height: 90rpx;
- }
- .swiper-box {
- height: calc(100% - 88rpx);
- }
- .goods-specs {
- margin-bottom: 10rpx;
- color: #cccccc;
- font-size: 24rpx;
- }
- .goods-price {
- margin-bottom: 10rpx;
- color: #999999;
- font-size: 24rpx;
- }
- .goods-item-view {
- display: flex;
- margin-bottom: 20rpx;
- .goods-info {
- padding-left: 30rpx;
- .goods-title {
- color: $u-main-color;
- margin-bottom: 10rpx;
- }
- }
- .goods-num {
- margin: 0rpx 10rpx;
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- justify-content: space-between;
- margin-bottom: 10rpx;
- .u-num {
- color: $aider-light-color;
- font-size: 33rpx;
- }
- }
- }
- .again-btn {
- margin: 0rpx 10rpx;
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- margin-bottom: 10rpx;
- }
- .seller-view {
- background-color: #fff;
- margin: 20rpx 0px;
- padding: 0px 20rpx 20rpx 20rpx;
- border-radius: 20rpx;
- .seller-info {
- height: 70rpx;
- .seller-name {
- font-size: 33rpx;
- font-weight: 600;
- }
- .order-sn {
- color: #909399;
- }
- }
- .btn-view {
- min-height: 70rpx;
- margin: 5rpx 5rpx;
- display: flex;
- flex-direction: row;
- .description {
- size: 25rpx;
- color: #999999;
- .text {
- margin: 20rpx 0rpx;
- }
- .title {
- color: #5f5d5f;
- }
- }
- }
- .evaluate {
- padding: 20rpx 0;
- display: flex;
- justify-content: flex-end;
- }
- }
- </style>
|