noticeDetailTow.axml 1.1 KB

1234567891011121314151617181920212223
  1. <import src="../../../Component/aParse/aParse.axml" />
  2. <view>
  3. <view class="title font-flex-word">{{obj.title}}</view>
  4. <scroll-view class="scroll" scroll-y="{{true}}">
  5. <template is="aParse" data="{{aParseData:article.nodes}}" />
  6. </scroll-view>
  7. <view style="padding:0.24rem 0.32rem">
  8. <view class="flex-box-ce" style="margin-bottom:0.2rem" onTap="getData" data-id="{{upData.id}}">
  9. <text>【上一篇】:</text>
  10. <text class="blue flex-1 font-flex-word" a:if="{{upData.title}}">{{upData.title}}</text>
  11. <text class="flex-1" a:else>无</text>
  12. </view>
  13. <view class="flex-box-ce" onTap="getData" data-id="{{nextData.id}}">
  14. <text>【下一篇】:</text>
  15. <text class="blue flex-1 font-flex-word" a:if="{{nextData.title}}">{{nextData.title}}</text>
  16. <text class="flex-1" a:else>无</text>
  17. </view>
  18. </view>
  19. <view class="footer flex-box-ce">
  20. <view class="flex-1" style="margin-right:24rpx" data-index="1" onTap="openUrl">联系产品顾问</view>
  21. <view class="flex-1" onTap="openUrl" data-index="2">产品使用手册</view>
  22. </view>
  23. </view>