IPREmail.vue 720 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div>
  3. <el-dialog title="IPR邮箱" :visible.sync="visible" width="1200px" :close-on-click-modal="false" :before-close="handleClose" append-to-body>
  4. <div style="height:calc(100vh - 250px)">
  5. <IPREmail v-if="visible"></IPREmail>
  6. </div>
  7. </el-dialog>
  8. </div>
  9. </template>
  10. <script>
  11. import IPREmail from '../IPREmail/IPREmail.vue';
  12. export default {
  13. components: {
  14. IPREmail
  15. },
  16. props: {},
  17. data() {
  18. return {
  19. visible:false
  20. };
  21. },
  22. watch: {},
  23. computed: {},
  24. created() {},
  25. mounted() {},
  26. methods: {
  27. open(){
  28. this.visible = true
  29. },
  30. handleClose(){
  31. this.visible = false
  32. },
  33. },
  34. };
  35. </script>
  36. <style lang="scss" scoped>
  37. </style>