yuminge-app/yun-min-program-plugin-master/mycomponent/yz_comment_popup/commentCellItem/commentCellItem.wxml

26 lines
864 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--mycomponent/yz_comment_popup/commentCellItem/commentCellItem.wxml-->
<!--
一级评论子组件 提供一个插槽
v-slot:cell-item-other : 右侧插槽flex布局
-->
<view class="components-comment-list child-list" catchtap="replyComment">
<view class="components-comment-main-left">
<image src="{{avatar}}" alt="" />
</view>
<view class="components-comment-main-right">
<view class="master-main">
<view class="master-main-left">
<view class="master-name">{{ nickname }}</view>
<view class="master-time">{{ time }}</view>
</view>
<view class="master-main-right">
<slot></slot>
</view>
</view>
<view class="master-main-content">
<block wx:if="{{Responder}}">回复<span class="selecolor">{{ Responder }}</span>
</block>
{{ content }}
</view>
</view>
</view>