浏览代码

fix:评论添加商品回复

kele 2 年之前
父节点
当前提交
9225ba3cbd
共有 1 个文件被更改,包括 24 次插入0 次删除
  1. 24 0
      pages/goods/components/detail/comment-item.vue

+ 24 - 0
pages/goods/components/detail/comment-item.vue

@@ -32,6 +32,10 @@
         </view>
         </view>
       </scroll-view>
       </scroll-view>
     </view>
     </view>
+    <view class="ss-m-t-20 reply-box" v-if="item.reply_time">
+      <view class="reply-title">商家回复</view>
+      <view class="reply-content">{{ item.reply_content }}</view>
+    </view>
   </view>
   </view>
 </template>
 </template>
 
 
@@ -71,4 +75,24 @@
     font-weight: 400;
     font-weight: 400;
     color: #333333;
     color: #333333;
   }
   }
+  .reply-box {
+    position: relative;
+  }
+  .reply-title {
+    position: absolute;
+    left: 0;
+    top: 0;
+    font-weight: 600;
+    font-size: 26rpx;
+    line-height: 40rpx;
+    color: #666666;
+  }
+
+  .reply-content {
+    text-indent: 108rpx;
+    font-weight: 400;
+    font-size: 26rpx;
+    line-height: 40rpx;
+    color: #333333;
+  }
 </style>
 </style>