DownloadDialog.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <el-dialog :lock-scroll="false"
  3. title="Quote Created"
  4. :visible.sync="visible"
  5. width="500px"
  6. :before-close="handleClose"
  7. :show-close="false"
  8. center
  9. top="0">
  10. <div class="content">How would you like to receive the quote</div>
  11. <div slot="footer" class="dialog-footer">
  12. <el-button type="danger" @click="handleDownload" :loading="downloading">DOWNLOAD</el-button>
  13. <el-button type="danger" @click="handleSend">SEND MAIL</el-button>
  14. <el-button type="danger" @click="handleClose" plain>CANCEL</el-button>
  15. </div>
  16. </el-dialog>
  17. </template>
  18. <script>
  19. import Bus from "@/plugins/bus.js";
  20. export default {
  21. props: {
  22. visible: {
  23. type: Boolean,
  24. default: false,
  25. },
  26. },
  27. data() {
  28. return {
  29. downloading:false
  30. }
  31. },
  32. mounted(){
  33. Bus.$on("finishDownload", data=> {this.downloading=false;})
  34. },
  35. beforeDestroy(){
  36. // 取消监听
  37. Bus.$off("finishDownload")
  38. },
  39. methods: {
  40. handleDownload() {
  41. this.downloading=true;
  42. Bus.$emit("sendDownload");
  43. },
  44. handleSend() {
  45. this.$emit("handleSend");
  46. },
  47. handleClose() {
  48. this.$emit("update:visible", false);
  49. },
  50. },
  51. };
  52. </script>
  53. <style lang="scss" scoped>
  54. .el-dialog__wrapper {
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. }
  59. .content {
  60. text-align: center;
  61. }
  62. </style>