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.
24 lines
733 B
24 lines
733 B
<view class="box" wx:if="{{SHOW_TOP}}">
|
|
<view class='arrow'></view>
|
|
<view class='body' bindtap='showModal'>
|
|
<text>{{text}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- modal -->
|
|
<view class='modal' catchtap wx:if="{{SHOW_MODAL}}">
|
|
<view style='flex-direction: row;align-items:center;'>
|
|
<text>1. 点击右上角按钮</text>
|
|
<image src='./assets/fav-1.jpg' style='width:100px;height:40px;'></image>
|
|
</view>
|
|
<view>
|
|
<text>2. 点击「添加到我的小程序」</text>
|
|
<image src='./assets/fav-2.jpg' style='width:100%;' mode="widthFix"></image>
|
|
</view>
|
|
<!-- 知道了 -->
|
|
<view class='ok-btn' hover-class='btn-hover' bindtap='okHandler'>
|
|
<view>
|
|
<text>我知道了!</text>
|
|
</view>
|
|
</view>
|
|
</view> |