|
|
|
@ -25,6 +25,8 @@
@@ -25,6 +25,8 @@
|
|
|
|
|
</ModalFooter> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<a-row class="modal-wrapper"> |
|
|
|
|
<a-col :span="24-commentSpan" class="modal-content"> |
|
|
|
|
<ModalWrapper |
|
|
|
|
ref="modalWrapperRef" |
|
|
|
|
:useWrapper="getProps.useWrapper" |
|
|
|
@ -42,6 +44,8 @@
@@ -42,6 +44,8 @@
|
|
|
|
|
> |
|
|
|
|
<slot/> |
|
|
|
|
</ModalWrapper> |
|
|
|
|
</a-col> |
|
|
|
|
</a-row> |
|
|
|
|
|
|
|
|
|
<template v-for="item in Object.keys(omit($slots, 'default'))" #[item]="data"> |
|
|
|
|
<slot :name="item" v-bind="data || {}"/> |
|
|
|
@ -241,3 +245,10 @@
@@ -241,3 +245,10 @@
|
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
<style lang="less"> |
|
|
|
|
.modal-content{ |
|
|
|
|
>.scroll-container{ |
|
|
|
|
padding: 14px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|