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.

26 lines
927 B

<block wx:if="{{SHOW}}">
<view class="box" wx:if="{{SHOW_TOP}}" style="top:{{statusBarHeight+23.3}}px">
<view class='arrow'></view>
<view class='body' bindtap='showModal'>
<text>{{text}}</text>
<icon type="cancel" color="white" size="20" class="cancel" bindtap="okHandler"></icon>
</view>
</view>
<view class='modal' catchtap hidden="{{!SHOW_MODAL}}">
<view style='flex-direction: row;align-items:center;'>
<text>1. 点击右上角按钮</text>
<image src='{{attachDir}}751597' style='width:100px;height:40px;' mode="aspectFit"></image>
</view>
<view>
<text>2. 点击「添加到我的小程序」</text>
<image src='{{attachDir}}751602' style='width:100%;' mode="widthFix"></image>
</view>
<view class='ok-btn' hover-class='btn-hover' bindtap='okHandler'>
<view>
<text>我知道了!</text>
</view>
</view>
</view>
</block>