ソースを参照

feat: 修改样式,已结算订单不可申请售后

Moss 1 年間 前
コミット
c5ce43d309

+ 2 - 1
src/components/zj-upload/index.vue

@@ -92,7 +92,8 @@ export default {
           'iff',
           'tga',
           'pcd',
-          'mpt'
+          'mpt',
+          'webp'
         ].includes(fileSuffix)
       ) {
         return 'image'

+ 41 - 1
src/pages/goods/detail.vue

@@ -71,6 +71,11 @@
           <view class="tit">全部留言</view>
           <view class="right" v-if="!isMine" @tap="isShowReportDialog = true;">内容违规,我要举报</view>
         </view>
+        <view class="mine">
+          <image :src="imageUrl + userInfo.avatar" mode="aspectFill" v-if="userInfo.avatar"></image>
+          <image src="@/static/common/logo.png" mode="aspectFill" v-else></image>
+          <view class="box" @click="openRemark()">我也要留言~</view>
+        </view>
         <view class="list">
           <view class="item" v-for="(item, index) in remarkList" :key="index">
             <view class="top">
@@ -186,7 +191,8 @@ import { uploadImg } from '@/common/utils/util.js'
         reportForm: {
           reason: '',
           fileList: [],
-        }
+        },
+        userInfo: {},
       }
     },
 
@@ -226,6 +232,7 @@ import { uploadImg } from '@/common/utils/util.js'
       this.id = id;
       this.getDetail();
       this.getRemarkList();
+      this.getUserInfo();
     },
 
     methods: {
@@ -257,10 +264,21 @@ import { uploadImg } from '@/common/utils/util.js'
       	})
       },
 
+      // 获取用户信息
+      getUserInfo() {
+        this.$api.get('/wechat/user/info', {
+          userId: this.$store.state.user.userId,
+        }).then(res => {
+          if(!res.data) return false;
+          this.userInfo = res.data;
+        })
+      },
+
       refresherrefresh() {
         this.refresherTriggered = true;
         this.getDetail();
         this.getRemarkList();
+        this.getUserInfo();
       },
 
       // 处理点赞留言
@@ -633,6 +651,28 @@ import { uploadImg } from '@/common/utils/util.js'
       line-height: 40rpx;
     }
   }
+  .mine {
+    margin-top: 30rpx;
+    display: flex;
+    image {
+      width: 80rpx;
+      height: 80rpx;
+      border-radius: 50%;
+      flex-shrink: 0;
+    }
+    .box {
+      flex: 1;
+      height: 80rpx;
+      margin-left: 20rpx;
+      border-radius: 80rpx;
+      background: #f5f5f5;
+      display: flex;
+      align-items: center;
+      padding: 0 30rpx;
+      font-size: 28rpx;
+      color: $reg-font;
+    }
+  }
   .item {
     padding: 30rpx 0;
     border-bottom: 1px solid #eaeaea;

+ 7 - 5
src/pages/mine/myBuy/list.vue

@@ -25,7 +25,7 @@
           <view class="status">{{item.status | statusFilter}}</view>
         </view>
         <view class="goods">
-          <image :src="imageUrl + item.goodsPicUrl" mode="aspectFill"></image>
+          <image :src="imageUrl + item.goodsPicUrl" mode="aspectFill" v-if="item.goodsPicUrl"></image>
           <view class="main">
             <view class="name">{{item.goodsTitle}}<text v-if="item.num > 1">×{{item.num}}</text></view>
             <view class="des">{{item.content}}</view>
@@ -43,7 +43,9 @@
           </view>
         </view>
         <view class="bottom">
-          <view class="left-location"><text class="iconfont icon-dingwei"></text>{{item.city}} {{item.area}}</view>
+          <view class="left-location">
+            <!-- <text class="iconfont icon-dingwei"></text>{{item.city}} {{item.area}} -->
+          </view>
           <view class="right-btn" @tap.stop>
 
             <u-button text="联系卖家" shape="circle" @tap="toContact(item.goodsId)"></u-button>
@@ -62,7 +64,7 @@
               <u-button text="确认收货" shape="circle" type="primary" plain @tap="confirmReceipt(item.orderId)"></u-button>
             </block>
 
-            <block v-if="item.status == 'COMPLETE'">
+            <block v-if="item.status == 'COMPLETE' && item.shareStatus == 'NO'">
               <u-button text="申请售后" shape="circle" @tap="toReturn(item.orderId)"></u-button>
             </block>
 
@@ -146,11 +148,11 @@
       this.crossPage.$on('reloadMyBuyListPage', () => {
         this.refreshList();
       })
-      
+
       this.tabCurrent = tab ? Number(tab) : 0;
       await this.getList();
     },
-    
+
     onUnload() {
       this.crossPage.$off('reloadMyBuyListPage');
     },

+ 1 - 1
src/pages/mine/myIssue/list.vue

@@ -27,7 +27,7 @@
             <view class="status" v-else>{{item.status | statusFilter}}</view>
           </view>
           <view class="goods">
-            <image :src="imageUrl + item.goodsPicUrl" mode="aspectFill"></image>
+            <image :src="imageUrl + item.goodsPicUrl" mode="aspectFill" v-if="item.goodsPicUrl"></image>
             <view class="main">
               <view class="name">{{item.title}}<text v-if="item.num > 1">×{{item.num}}</text></view>
               <view class="des">{{item.content}}</view>

+ 1 - 1
src/styles/common.scss

@@ -177,10 +177,10 @@
       image {
         width: 120rpx;
         height: 120rpx;
+        margin-right: 20rpx;
       }
       .main {
         flex: 1;
-        margin-left: 20rpx;
         .name {
           font-weight: 500;
           font-size: 32rpx;