Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
wu.jifen
2025-04-23 19:22:00 +08:00
12 changed files with 162 additions and 66 deletions

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog :visible.sync="visible" :title="title" :append-to-body="appendToBody">
<el-dialog :visible.sync="visible" :title="title" :append-to-body="appendToBody" :destroy-on-close="destroyOnClose" :width="width">
<div class="render-dialog-body">
<slot name="default"></slot>
</div>
@@ -18,10 +18,18 @@ export default {
return {}
},
props: {
width: {
type: String,
default: '30%'
},
appendToBody: {
type: Boolean,
default: false
},
destroyOnClose: {
type: Boolean,
default: false
},
visible: {
type: Boolean,
default: false

View File

@@ -9,7 +9,6 @@
@sort-change="sortChange"
ref="renderTable"
:border="border"
stripe
:header-align="align"
size="small"
default-expand-all