fix:评论添加商品回复

pull/8/head
kele 2023-03-22 19:03:02 +08:00
parent 4be139a93e
commit 9225ba3cbd
1 changed files with 24 additions and 0 deletions

View File

@ -32,6 +32,10 @@
</view>
</scroll-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>
</template>
@ -71,4 +75,24 @@
font-weight: 400;
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>