26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
<!--template/aboutRelease/aboutRelease.wxml-->
|
|
<!-- 关于发布 -->
|
|
<view class="pop flexflex" bindtap="closePop" data-key="popUpIs" data-value="">
|
|
<view class="pop-box" catchtap="a">
|
|
<view class="pop-header flexcenter">关于发布</view>
|
|
<view class="nav flexacenter">
|
|
<view class="nav-item flexcenter {{ tab == item.type ? 'pitch' : ''}}" wx:for="{{ navList }}" bindtap="switchingNav" data-type="{{ item.type }}">{{ item.name }}</view>
|
|
</view>
|
|
|
|
<view class="rules-box">
|
|
<view class="rules-item flexflex" wx:for="{{ aboutRulesList[tab] }}" wx:key="index">
|
|
<view class="rules-icon-box flexcenter"></view>
|
|
<view class="rules-content flex1">
|
|
<rich-text nodes="{{ item }}"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 操作 -->
|
|
<view class="operation flexcenter" bindtap="closePop" data-key="popUpIs" >
|
|
<view class="operation-item">关闭</view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</view> |