14 lines
466 B
Plaintext
14 lines
466 B
Plaintext
|
|
<!--pages/agreement/index.wxml-->
|
||
|
|
<title-bar title="用户协议和隐私协议"></title-bar>
|
||
|
|
<!-- tab菜单 -->
|
||
|
|
<scroll-view scroll-x class="bg-white nav">
|
||
|
|
<view class="flex text-center">
|
||
|
|
<view class="cu-item flex-sub {{index==currentIndex?'text-blue cur':''}}" wx:for="{{tabs}}" wx:key catchtap="tabSelect" data-index="{{index}}">
|
||
|
|
{{item.lab}}
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</scroll-view>
|
||
|
|
<scroll-view>
|
||
|
|
<rich-text nodes="{{dealContent}}" />
|
||
|
|
</scroll-view>
|