1234567891011121314151617181920212223 |
- <import src="../../../Component/aParse/aParse.axml" />
- <view>
- <view class="title font-flex-word">{{obj.title}}</view>
- <scroll-view class="scroll" scroll-y="{{true}}">
- <template is="aParse" data="{{aParseData:article.nodes}}" />
- </scroll-view>
- <view style="padding:0.24rem 0.32rem">
- <view class="flex-box-ce" style="margin-bottom:0.2rem" onTap="getData" data-id="{{upData.id}}">
- <text>【上一篇】:</text>
- <text class="blue flex-1 font-flex-word" a:if="{{upData.title}}">{{upData.title}}</text>
- <text class="flex-1" a:else>无</text>
- </view>
- <view class="flex-box-ce" onTap="getData" data-id="{{nextData.id}}">
- <text>【下一篇】:</text>
- <text class="blue flex-1 font-flex-word" a:if="{{nextData.title}}">{{nextData.title}}</text>
- <text class="flex-1" a:else>无</text>
- </view>
- </view>
- <view class="footer flex-box-ce">
- <view class="flex-1" style="margin-right:24rpx" data-index="1" onTap="openUrl">联系产品顾问</view>
- <view class="flex-1" onTap="openUrl" data-index="2">产品使用手册</view>
- </view>
- </view>
|