1234567891011121314151617 |
- <!--components/popup/popup.wxml-->
- <view class="scc-popup {{extClass}}" hidden="{{isShow}}">
- <view class='scc-popup-container'>
- <view class="scc-popup-icon" hidden="{{!showIcon}}">
- <image src="/static/img/icon_{{type}}.png"></image>
- </view>
- <view class="scc-popup-box">
- <view class="scc-popup-title" wx:if="{{title}}">{{title}}</view>
- <view class="scc-popup-content" wx:if="{{content}}">{{content}}</view>
- <view class="scc-popup-content scc-popup-subcontent" wx:if="{{content1}}">{{content1}}</view>
- </view>
- <view class="scc-popup-btn {{!showCancel ? 'one-btn' : 'two-btn'}}">
- <text wx:if="{{showCancel}}" class="scc-btn-cancel" catchtap="_cancelEvent">{{cancelText}}</text>
- <text class="scc-btn-confirm" catchtap="_confirmEvent">{{confirmText}}</text>
- </view>
- </view>
- </view>
|