You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
910 B
43 lines
910 B
<template>
|
|
<div>
|
|
<el-dialog
|
|
title="移出确认"
|
|
:visible.sync="deleteVisible"
|
|
:before-close="handleClose"
|
|
>
|
|
<span class="dialog-right-top" />
|
|
<span class="dialog-left-bottom" />
|
|
<div class="setting-dialog">
|
|
<p><span style="color: #fff">确定将所选数据移出{{ listName }}吗?</span></p>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button
|
|
type="primary"
|
|
@click.native="handleConfirm"
|
|
>确定</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['listName'],
|
|
data() {
|
|
return {
|
|
deleteVisible: false
|
|
}
|
|
},
|
|
methods: {
|
|
handleConfirm() {
|
|
this.deleteVisible = false
|
|
// this.reconfirmDeleteVisible = true
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|