index.wxml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <!--nova-werun/components/circle-card/index.wxml-->
  2. <view class="trends-one" bindtouchstart="onTouchStart" wx:if="{{objectId&&type=='detail'}}">
  3. <!-- 详细-->
  4. <view wx:if="{{type=='detail'}}" class="namebax">
  5. <image src="{{cicleList[0].user.avatar}}"></image>
  6. <view class="name">{{cicleList[0].user.nickname}}</view>
  7. </view>
  8. <view class="text" wx:if="{{type=='detail'}}">{{cicleList[0].content}}</view>
  9. <!-- 图片 -->
  10. <!-- 4张图片 -->
  11. <view class="picture4" wx:if="{{images.length==4}}">
  12. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" wx:for="{{images}}" src="{{item}}" wx:key="index"> </image>
  13. </view>
  14. <!-- 3张和4-9张图片 -->
  15. <block wx:if="{{ type=='detail'}}">
  16. <view class="picture" wx:if="{{images.length>4 || images.length==3 }}">
  17. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" wx:for="{{images}}" wx:key="index" src="{{item}}"> </image>
  18. </view>
  19. </block>
  20. <!-- 2张图片 -->
  21. <view class="picture2" wx:if="{{images.length==2}}">
  22. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" wx:for="{{images}}" wx:key="index" src="{{item}}"> </image>
  23. </view>
  24. <!-- 1张图片 -->
  25. <view class="picture3" wx:if="{{images.length==1}}">
  26. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="{{imageclass}}" wx:for="{{images}}" wx:key="index" src="{{item}}" bindload="onImageLoad"> </image>
  27. </view>
  28. <!-- 预览组件 -->
  29. <previewImg id="previewComponent" previewImgList="{{imgList}}" previewImg="{{currentImg}}" />
  30. <!-- 地址 -->
  31. <view class="addbox" wx:if="{{cicleList[0].location}}">
  32. <van-icon name="location-o" size='28rpx' />
  33. <view class="add-tex">{{cicleList[0].location}}</view>
  34. </view>
  35. <view class="timebox">
  36. <!-- 点赞 -->
  37. <view class="dianzan" wx:if="{{!isclick}}" bindtap="isclick" data-id="{{cicleList[0].objectId}}">
  38. <van-icon name="good-job-o" size='32rpx' />
  39. {{chickList.length}}
  40. </view>
  41. <view class="dianzan" wx:if="{{isclick}}" bindtap="isclick">
  42. <van-icon name="good-job-o" size='32rpx' color='#FF6C00' />
  43. {{chickList.length}}
  44. </view>
  45. <view class="time-box">
  46. <!-- <view class="time">{{time}}</view> -->
  47. <!-- 删除 -->
  48. <van-icon wx:if="{{ permission=='delete'}}" color='#1a1abd' bind:click='showconfirm' name="delete-o" size='32rpx' />
  49. <van-dialog id="van-dialog" showCancelButton message='你确认要删除吗' show="{{ showconfirm }}" bind:cancel='cancleconfirm' bind:confirm='clickconfirm' />
  50. <!-- 评论 -->
  51. <!-- 没有回复的评论的数量 -->
  52. <view class="pinlunbox" bindtap="showPopup">
  53. <van-icon name="chat-o" size='32rpx' />
  54. {{noCommentCount}}
  55. </view>
  56. <!-- 转发 -->
  57. <view class="pinlunbox" style="margin-left: 10rpx;">
  58. <van-icon name="share-o" size='32rpx' />
  59. 0
  60. </view>
  61. </view>
  62. <!-- 点赞评论 -->
  63. <!-- <view class="functionbox" wx:if="{{isgood}}">
  64. <view class="function">
  65. <view class="function1" wx:if="{{!isclick}}" bindtap="isclick" data-id="{{cicleList[0].objectId}}">
  66. <van-icon name="like-o" />
  67. <view class="text2">赞</view>
  68. </view>
  69. <view class="function1" wx:if="{{isclick}}" bindtap="isclick">
  70. <van-icon name="like" color='red' />
  71. <view class="text2">取消</view>
  72. </view>
  73. |
  74. <view class="function1" bindtap="showPopup">
  75. <van-icon name="chat-o" />
  76. <view class="text2">评论</view>
  77. </view>
  78. </view>
  79. </view> -->
  80. <!-- 输入框 -->
  81. <!-- <view class="point" bindtap="showgood"> ·· </view> -->
  82. <van-popup show="{{ show }}" position="bottom" custom-style="height: {{bottomNavHeight+textareaHeight+70}}rpx;" bind:close="onClose" overlay-style='background-color: rgba(255, 255, 255, 0); ' custom-style='background-color: #efefef;'>
  83. <view class='sending' style="height: {{textareaHeight+40}}rpx;">
  84. <textarea placeholder="{{commenttext}}" class="textarea" style="height: {{textareaHeight}}rpx;" bindinput="onInput" value="{{inputValue}}"></textarea>
  85. <view class="button2" wx:if="{{!inputValue}}">发送</view>
  86. <view class="button" wx:if="{{inputValue}}" bindtap="sendComment">发送</view>
  87. </view>
  88. </van-popup>
  89. </view>
  90. <!-- 点赞人 -->
  91. <!-- <view class="chinkinbox" wx:if="{{chickList.length!=0}}">
  92. <van-icon name="like-o" size='18' />
  93. <block wx:for="{{chickList}}">
  94. <view class="chickname" wx:if="{{index!=chickList.length-1}}">{{item.user.nickname}} ,</view>
  95. <view class="chickname" wx:if="{{index==chickList.length-1}}">{{item.user.nickname}}</view>
  96. </block>
  97. </view> -->
  98. <!-- 评论 -->
  99. <view class="{{chickList.length !=0? 'commentbox' :'commentbox2' }}" wx:if="{{commentList.length!=0}}">
  100. <block wx:for="{{commentList}}" wx:key="index">
  101. <view class="{{item.showdeletid?'comment2':'comment'}}" wx:if="{{!item.comment}}" bindtap="showpop" data-id="{{item.objectId}}">
  102. <span style="color: #4896FB;margin-right:10rpx">{{item.user.nickname}}:</span>
  103. <span>{{item.content}}</span>
  104. <view wx:if="{{item.showdeletid}}" class="delete" bindtap="deletecomment" data-id="{{item.objectId}}">删除</view>
  105. </view>
  106. <view class="{{item.showdeletid?'comment2':'comment'}}" wx:if="{{item.comment&&!item.comment.isDeleted}}" bindtap="showpop" data-id="{{item.objectId}}">
  107. <span style="color: #4896FB;">{{item.user.nickname}}</span>
  108. 回复
  109. <span style="color: #4896FB;margin-right:10rpx">{{item.comment.user.nickname}}:</span>
  110. <span>{{item.content}}</span>
  111. <view wx:if="{{item.showdeletid}}" class="delete" bindtap="deletecomment" data-id="{{item.objectId}}">删除</view>
  112. </view>
  113. </block>
  114. </view>
  115. </view>
  116. <view class="trends-two" bindtouchstart="onTouchStart" wx:if="{{objectId&&type=='surface'}}">
  117. <!--主页 -->
  118. <view class="namebax" wx:if="{{type=='surface'}}" bindtap="gourl" data-url="../../pages/circle/circle-detail/index" data-id="{{cicleList[0].objectId}}">
  119. <image src="{{cicleList[0].user.avatar}}"></image>
  120. <view class="name">{{cicleList[0].user.nickname}}</view>
  121. <view style="margin-left: auto;font-family: MicrosoftYaHei;font-size: 28rpx;color: #333333;" wx:if="{{ permission=='delete'&&cicleList[0].isVisible==true}}">已发布</view>
  122. <view style="margin-left: auto;font-family: MicrosoftYaHei;font-size: 28rpx;color: #333333;" wx:if="{{ permission=='delete'&&cicleList[0].isVisible!=true}}">待审核</view>
  123. </view>
  124. <view wx:if="{{!showFull}}" class="text">
  125. <view wx:if="{{cicleList[0].content.length > maxLength}}">
  126. <view class="contentbox">{{cicleList[0].content}}</view>
  127. <text bindtap="showFullContent" class="quanwen">查看全文</text>
  128. </view>
  129. <view wx:if="{{cicleList[0].content.length <= maxLength}}">
  130. <view bindtap="gourl" style="max-height: 134rpx;" data-url="../../pages/circle/circle-detail/index" data-id="{{cicleList[0].objectId}}" class="contentbox">{{cicleList[0].content}}</view>
  131. </view>
  132. </view>
  133. <!-- 全文内容 -->
  134. <view wx:if="{{showFull}}" class="full-content">
  135. <view bindtap="gourl" data-url="../../pages/circle/circle-detail/index" data-id="{{cicleList[0].objectId}}">
  136. {{cicleList[0].content}}
  137. </view>
  138. <text bindtap="showLessContent" class="quanwen">收起</text>
  139. </view>
  140. <!-- 图片 -->
  141. <!-- 4张图片 -->
  142. <view class="picture4" wx:if="{{images.length==4}}">
  143. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" wx:for="{{images}}" wx:key="index" src="{{item}}"> </image>
  144. </view>
  145. <!-- 3张和5-9张图片 -->
  146. <block wx:if="{{ type=='surface'}}">
  147. <view class="picture" wx:if="{{images.length>4 && images.length<=9 || images.length==3 }}">
  148. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" wx:for="{{images}}" wx:key="index" src="{{item}}"> </image>
  149. </view>
  150. </block>
  151. <!-- 9张以上图片 -->
  152. <view class="picture5" wx:if="{{images.length > 9 && type=='surface'}}">
  153. <view wx:for="{{images}}" wx:key="index" wx:if="{{index < 9}}">
  154. <view class="image-wrapper">
  155. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" src="{{item}}"></image>
  156. <view class="more-images" wx:if="{{index==8}}" bindtap="gourl" data-url="../../pages/circle/circle-detail/index" data-id="{{cicleList[0].objectId}}">+{{images.length - 9}}</view>
  157. </view>
  158. </view>
  159. </view>
  160. <!-- 2张图片 -->
  161. <view class="picture2" wx:if="{{images.length==2}}">
  162. <image mode="scaleToFill" bindtap="openpreviewImg" data-index="{{index}}" class="image" wx:for="{{images}}" wx:key="{{index}}" src="{{item}}"> </image>
  163. </view>
  164. <!-- 1张图片 -->
  165. <view class="picture3" wx:if="{{images.length==1}}">
  166. <image mode="scaleToFill" class="{{imageclass}}" data-index="{{index}}" wx:for="{{images}}" wx:key="index" src="{{item}}" bindload="onImageLoad" bindtap="openpreviewImg"> </image>
  167. </view>
  168. <!-- 预览组件 -->
  169. <previewImg id="previewComponent" previewImgList="{{imgList}}" previewImg="{{currentImg}}" />
  170. <view class="addbox" wx:if="{{cicleList[0].location}}">
  171. <van-icon name="location-o" size='28rpx' />
  172. <view class="add-tex">{{cicleList[0].location}}</view>
  173. </view>
  174. <view class="timebox">
  175. <!-- 点赞 -->
  176. <view class="dianzan" wx:if="{{!isclick}}" bindtap="isclick" data-id="{{cicleList[0].objectId}}">
  177. <van-icon name="good-job-o" size='32rpx' />
  178. {{chickList.length}}
  179. </view>
  180. <view class="dianzan" wx:if="{{isclick}}" bindtap="isclick">
  181. <van-icon name="good-job-o" size='32rpx' color='#FF6C00' />
  182. {{chickList.length}}
  183. </view>
  184. <view class="time-box">
  185. <!-- <view class="time">{{time}}</view> -->
  186. <!-- 删除 -->
  187. <van-icon wx:if="{{ permission=='delete'}}" color='#1a1abd' bind:click='showconfirm' name="delete-o" size='32rpx' />
  188. <van-dialog id="van-dialog" showCancelButton message='你确认要删除吗' show="{{ showconfirm }}" bind:cancel='cancleconfirm' bind:confirm='clickconfirm' />
  189. <!-- 评论 -->
  190. <!-- 没有回复的评论的数量 -->
  191. <view class="pinlunbox" bindtap="showPopup">
  192. <van-icon name="chat-o" size='32rpx' />
  193. {{noCommentCount}}
  194. </view>
  195. </view>
  196. <!-- 点赞评论 -->
  197. <!-- <view class="functionbox" wx:if="{{isgood}}">
  198. <view class="function">
  199. <view class="function1" wx:if="{{!isclick}}" bindtap="isclick" data-id="{{cicleList[0].objectId}}">
  200. <van-icon name="like-o" />
  201. <view class="text2">赞</view>
  202. </view>
  203. <view class="function1" wx:if="{{isclick}}" bindtap="isclick">
  204. <van-icon name="like" color='red' />
  205. <view class="text2">取消</view>
  206. </view>
  207. |
  208. <view class="function1" bindtap="showPopup">
  209. <van-icon name="chat-o" />
  210. <view class="text2">评论</view>
  211. </view>
  212. </view>
  213. </view> -->
  214. <!-- 输入框 -->
  215. <!-- <view class="point" bindtap="showgood"> ·· </view> -->
  216. <van-popup show="{{ show }}" position="bottom" custom-style="height: {{bottomNavHeight+textareaHeight+70}}rpx;" bind:close="onClose" overlay-style='background-color: rgba(255, 255, 255, 0); ' custom-style='background-color: #efefef;'>
  217. <view class='sending' style="height: {{textareaHeight+40}}rpx;">
  218. <textarea placeholder="{{commenttext}}" class="textarea" style="height: {{textareaHeight}}rpx;" bindinput="onInput" value="{{inputValue}}"></textarea>
  219. <view class="button2" wx:if="{{!inputValue}}">发送</view>
  220. <view class="button" wx:if="{{inputValue}}" bindtap="sendComment">发送</view>
  221. </view>
  222. </van-popup>
  223. </view>
  224. <!-- 点赞人 -->
  225. <!-- <view class="chinkinbox" wx:if="{{chickList.length!=0}}">
  226. <van-icon name="like-o" size='18' />
  227. <block wx:for="{{chickList}}">
  228. <view class="chickname" wx:if="{{index!=chickList.length-1}}">{{item.user.nickname}} ,</view>
  229. <view class="chickname" wx:if="{{index==chickList.length-1}}">{{item.user.nickname}}</view>
  230. </block>
  231. </view> -->
  232. <!-- 评论 -->
  233. <view class="{{chickList.length !=0? 'commentbox' :'commentbox2' }}" wx:if="{{commentList.length!=0}}">
  234. <block wx:for="{{commentList}}" wx:key="index">
  235. <view class="{{item.showdeletid?'comment2':'comment'}}" wx:if="{{!item.comment}}" bindtap="showpop" data-id="{{item.objectId}}">
  236. <span style="color: #4896FB;margin-right:10rpx">{{item.user.nickname}}:</span>
  237. <span>{{item.content}}</span>
  238. <view wx:if="{{item.showdeletid}}" class="delete" bindtap="deletecomment" data-id="{{item.objectId}}">删除</view>
  239. </view>
  240. <view class="{{item.showdeletid?'comment2':'comment'}}" wx:if="{{item.comment&&!item.comment.isDeleted}}" bindtap="showpop" data-id="{{item.objectId}}">
  241. <span style="color: #4896FB;">{{item.user.nickname}}</span>
  242. 回复
  243. <span style="color: #4896FB;margin-right:10rpx">{{item.comment.user.nickname}}:</span>
  244. <span>{{item.content}}</span>
  245. <view wx:if="{{item.showdeletid}}" class="delete" bindtap="deletecomment" data-id="{{item.objectId}}">删除</view>
  246. </view>
  247. </block>
  248. </view>
  249. </view>