index.wxml 706 Bytes
Newer Older
程智春 committed
1 2 3
<!--static/nativeComponents/PopUp/index.wxml-->
<view class="pop-up" wx:if="{{domainShow}}">
  <view class="shade"></view>
HouTiZhuo committed
4 5
  <view class="content" style="width:{{datas.componentData.imgWidth ? datas.componentData.imgWidth + '%' : '80%'}};height:{{datas.componentData.imgHeight ? datas.componentData.imgHeight + '%' : 'auto'}}">
    <image mode="{{datas.componentData.objectFit == 'cover' ? 'aspectFill' : datas.componentData.objectFit == 'contain' ? 'aspectFit' : 'widthFix'}}" src="{{img}}" bindtap="onclickHandle"></image>
程智春 committed
6
    <view class="back {{datas.componentData.backButtonSite=='bottom'?'back-bottom':'back-top'}}" bindtap="backHandle">
HouTiZhuo committed
7 8
      <em></em>
      <em></em>
程智春 committed
9 10 11
    </view>
  </view>
</view>