popup.wxml 841 B

1234567891011121314151617
  1. <!--components/popup/popup.wxml-->
  2. <view class="scc-popup {{extClass}}" hidden="{{isShow}}">
  3. <view class='scc-popup-container'>
  4. <view class="scc-popup-icon" hidden="{{!showIcon}}">
  5. <image src="/static/img/icon_{{type}}.png"></image>
  6. </view>
  7. <view class="scc-popup-box">
  8. <view class="scc-popup-title" wx:if="{{title}}">{{title}}</view>
  9. <view class="scc-popup-content" wx:if="{{content}}">{{content}}</view>
  10. <view class="scc-popup-content scc-popup-subcontent" wx:if="{{content1}}">{{content1}}</view>
  11. </view>
  12. <view class="scc-popup-btn {{!showCancel ? 'one-btn' : 'two-btn'}}">
  13. <text wx:if="{{showCancel}}" class="scc-btn-cancel" catchtap="_cancelEvent">{{cancelText}}</text>
  14. <text class="scc-btn-confirm" catchtap="_confirmEvent">{{confirmText}}</text>
  15. </view>
  16. </view>
  17. </view>