<view class="wx-modal-root" a:if="{{visible}}">
  <view class="wx-modal-mask">
  </view>
  <view class="wx-modal-wrap">
    <view class="wx-modal" style="width:{{width}}px">
      <view class="wx-modal-content">
        <view class="wx-modal-close">
          <text class="wx-modal-close-x" onTap="onCancel">X</text>
        </view>
        <view class="wx-modal-header">
          <view class="wx-modal-title">
            {{title}}
          </view>
        </view>
        <view class="wx-modal-body">
          <slot name="body"/>
        </view>
        <view class="wx-modal-footer" a:if="{{footer}}">
          <view>
            <button type="normal" class="wx-modal-btn" onTap="onCancel">
              取 消
            </button>
            <button type="primary" class="wx-modal-btn" onTap="onOk">
              确 定
            </button>
          </view>
        </view>
      </view>
    </view>
  </view>
</view>