mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-15 02:40:46 +08:00
67cd7e95e6
* style(components): [dialog] Modify dialog style and docs * chore: update * feat(components): [dialog] add overflow prop * feat(components): update
82 lines
2.2 KiB
Vue
82 lines
2.2 KiB
Vue
<template>
|
|
<el-button plain @click="dialogTableVisible = true">
|
|
Open a Table nested Dialog
|
|
</el-button>
|
|
|
|
<el-button plain @click="dialogFormVisible = true">
|
|
Open a Form nested Dialog
|
|
</el-button>
|
|
|
|
<el-dialog v-model="dialogTableVisible" title="Shipping address" width="800">
|
|
<el-table :data="gridData">
|
|
<el-table-column property="date" label="Date" width="150" />
|
|
<el-table-column property="name" label="Name" width="200" />
|
|
<el-table-column property="address" label="Address" />
|
|
</el-table>
|
|
</el-dialog>
|
|
|
|
<el-dialog v-model="dialogFormVisible" title="Shipping address" width="500">
|
|
<el-form :model="form">
|
|
<el-form-item label="Promotion name" :label-width="formLabelWidth">
|
|
<el-input v-model="form.name" autocomplete="off" />
|
|
</el-form-item>
|
|
<el-form-item label="Zones" :label-width="formLabelWidth">
|
|
<el-select v-model="form.region" placeholder="Please select a zone">
|
|
<el-option label="Zone No.1" value="shanghai" />
|
|
<el-option label="Zone No.2" value="beijing" />
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button @click="dialogFormVisible = false">Cancel</el-button>
|
|
<el-button type="primary" @click="dialogFormVisible = false">
|
|
Confirm
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { reactive, ref } from 'vue'
|
|
|
|
const dialogTableVisible = ref(false)
|
|
const dialogFormVisible = ref(false)
|
|
const formLabelWidth = '140px'
|
|
|
|
const form = reactive({
|
|
name: '',
|
|
region: '',
|
|
date1: '',
|
|
date2: '',
|
|
delivery: false,
|
|
type: [],
|
|
resource: '',
|
|
desc: '',
|
|
})
|
|
|
|
const gridData = [
|
|
{
|
|
date: '2016-05-02',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
{
|
|
date: '2016-05-04',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
{
|
|
date: '2016-05-01',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
{
|
|
date: '2016-05-03',
|
|
name: 'John Smith',
|
|
address: 'No.1518, Jinshajiang Road, Putuo District',
|
|
},
|
|
]
|
|
</script>
|