1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div>
- <el-dialog title="IPR邮箱" :visible.sync="visible" width="1200px" :close-on-click-modal="false" :before-close="handleClose" append-to-body>
- <div style="height:calc(100vh - 250px)">
- <IPREmail v-if="visible"></IPREmail>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import IPREmail from '../IPREmail/IPREmail.vue';
- export default {
- components: {
- IPREmail
- },
- props: {},
- data() {
- return {
- visible:false
- };
- },
- watch: {},
- computed: {},
- created() {},
- mounted() {},
- methods: {
- open(){
- this.visible = true
- },
- handleClose(){
- this.visible = false
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|