You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.7 KiB
37 lines
1.7 KiB
<!--pages/user/address/index.wxml-->
|
|
<view class="info">
|
|
<title-header title="{{nowTitle}}"></title-header>
|
|
<view class="content" wx:if="{{flag}}">
|
|
<view class="title">{{ title }}</view>
|
|
<view class="list">
|
|
<view class="item" wx:for="{{baseList}}" wx:key="index" data-item="{{item}}" bindtap="goDetail">
|
|
<view class="item-title">{{ item.title }}</view>
|
|
<view class="item-info">{{ item.des }}</view>
|
|
<view class="item-icon"> > </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="info-content" wx:if="{{!flag}}">
|
|
<view class="info-list" wx:for="{{childList}}">
|
|
<view class="title">{{ item.title }}</view>
|
|
<view class="info-column">
|
|
<view class="column-title">使用目的</view>
|
|
<view class="column-info">{{ item.purpose }}</view>
|
|
</view>
|
|
<view class="info-column">
|
|
<view class="column-title">使用场景</view>
|
|
<view class="column-info">{{ item.usage_scenarios }}</view>
|
|
</view>
|
|
<view class="info-column">
|
|
<view class="column-title">收集情况</view>
|
|
<view class="column-info">{{ item.collect }}</view>
|
|
</view>
|
|
|
|
<view class="info-column" data-item="{{item}}" bindtap="goRouter">
|
|
<view class="column-title">信息内容</view>
|
|
<view class="column-info" style="color: {{item.jump?'#0B898E':'#000'}};">{{item.information}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|