28 lines
529 B
Vue
28 lines
529 B
Vue
<template>
|
|
<div>
|
|
<!-- 成功获得奖品弹窗 -->
|
|
<el-dialog class="Explore-dialog" :visible.sync="ExploreDialogVisible" :modal="false" :before-close="ExploreHandleClose">
|
|
<div class="btn" @click="ExploreDialogVisible = false">确定</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
ExploreDialogVisible: true,
|
|
}
|
|
},
|
|
mounted() {},
|
|
methods: {
|
|
ExploreHandleClose() {
|
|
this.ExploreDialogVisible = false
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |