.oc-dialog-cover(ref="dialogContainer", v-show="isShow", :class="type")
.oc-dialog(:class="type", :style="dialogStyle")
.dialog-hd(v-if="title") {{title}}
.dialog-close(@click="removeHanlder") ×
.dialog-bd(:class="{'icon-type': type}")
i.tip-icon(v-if="type", :class="type")
.dialog-msg
slot
.dialog-ft(v-if="foot")
button.primary(ref="btnConfirm", type="button", @click="confirmHanlder", v-html="confirmText || defaultConfirmText")
button.ml10(ref="btnCancel", type="button", @click="removeHanlder", v-html="cancelText || defaultCancelText")