topicDetail.wxml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <scroll-view class="container">
  2. <scroll-view class="content">
  3. <import src="../../lib/wxParse/wxParse.wxml" />
  4. <template is="wxParse" data="{{wxParseData:topicDetail.nodes}}" />
  5. </scroll-view>
  6. <scroll-view class="sv-goods" wx:if="{{topicGoods.length > 0 }}">
  7. <view class="topic-goods">
  8. <view class="h">
  9. <text class="t">专题商品</text>
  10. <image bindtap="postComment" class="i" src="http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/comment-add-2aca147c3f.png"></image>
  11. </view>
  12. <view class="b">
  13. <view class="item" wx:for="{{topicGoods}}" wx:for-index="index" wx:for-item="item" wx:key="id">
  14. <navigator url="/pages/goods/goods?id={{item.id}}">
  15. <image class="img" src="{{item.picUrl}}" background-size="cover"></image>
  16. <view class="right">
  17. <view class="text">
  18. <text class="name">{{item.name}}</text>
  19. <text class="desc">{{item.brief}}</text>
  20. <text class="price">¥{{item.retailPrice}}</text>
  21. </view>
  22. </view>
  23. </navigator>
  24. </view>
  25. </view>
  26. </view>
  27. </scroll-view>
  28. <scroll-view class="comments">
  29. <view class="h">
  30. <text class="t">精选留言</text>
  31. <image bindtap="postComment" class="i" src="http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/comment-add-2aca147c3f.png"></image>
  32. </view>
  33. <view class="has-comments" wx:if="{{commentList.length > 0 }}">
  34. <view class="b">
  35. <view class="item" wx:for="{{commentList}}" wx:key="id">
  36. <view class="info">
  37. <view class="user">
  38. <image class="avatar" src="{{item.userInfo.avatarUrl}}"></image>
  39. <text class="nickname">{{item.userInfo.nickName}}</text>
  40. </view>
  41. <view class="time">{{item.addTime}}</view>
  42. </view>
  43. <view class="comment">
  44. {{item.content}}
  45. </view>
  46. </view>
  47. </view>
  48. <view class="load" wx:if="{{commentCount > 5}}">
  49. <navigator url="/pages/topicComment/topicComment?valueId={{topic.id}}&type=1">查看更多</navigator>
  50. </view>
  51. </view>
  52. <view class="no-comments" wx:if="{{commentList.length <= 0}}">
  53. <view class="b">
  54. <image class="icon" src="http://yanxuan.nosdn.127.net/hxm/yanxuan-wap/p/20161201/style/img/icon-normal/no-comment-560f87660a.png"></image>
  55. <text class="txt">等你来留言</text>
  56. </view>
  57. </view>
  58. </scroll-view>
  59. <scroll-view class="rec-box">
  60. <view class="h">
  61. <text class="txt">专题推荐</text>
  62. </view>
  63. <view class="b">
  64. <navigator class="item" wx:for="{{topicList}}" wx:key="id" url="../topicDetail/topicDetail?id={{item.id}}">
  65. <image class="img" src="{{item.picUrl}}"></image>
  66. <text class="title">{{item.title}}</text>
  67. </navigator>
  68. </view>
  69. </scroll-view>
  70. </scroll-view>