ExportDialog.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <el-dialog :lock-scroll="false" :title="title" :visible.sync="visible" width="700px" :before-close="handleClose" :close-on-click-modal="false" top="0">
  3. <el-form :model="emailForm" :rules="rules" ref="ruleForm">
  4. <el-form-item v-for="val,key in emailForm" :key="key" :label="labelShow ? key : ''" :label-width="labelWidth+'px'" :prop="key">
  5. <el-input v-model="emailForm[key]" readonly ></el-input><el-button :class="key" :data-clipboard-text="emailForm[key]" type="primary" @click.prevent="copyUrl(key)">copy link</el-button>
  6. </el-form-item>
  7. </el-form>
  8. </el-dialog>
  9. </template>
  10. <script>
  11. import Clipboard from 'clipboard';
  12. export default {
  13. props: {
  14. title:{
  15. type:String,
  16. default: 'Send Email'
  17. },
  18. sendbtnCext:{
  19. type:String,
  20. default: 'SUBMIT REQUEST'
  21. },
  22. isSendPdf:{
  23. type:Boolean,
  24. default: false
  25. },
  26. labelShow:{
  27. type:Boolean,
  28. default: true
  29. },
  30. emailForm: {},
  31. rules: {},
  32. labelWidth: Number,
  33. visible: {
  34. type: Boolean,
  35. default: false
  36. },
  37. },
  38. methods:{
  39. copyUrl(key){
  40. let clipboard = new Clipboard(`.${key}`)
  41. clipboard.on('success', e => {
  42. this.$message.success("link copied to clipboard") // 利用Element组件给予成功提示
  43. clipboard.destroy() // 释放内存
  44. })
  45. clipboard.on('error', e => {
  46. this.$message.error('The browser does not support automatic replication') // 给予错误提示信息
  47. clipboard.destroy() // 释放内存
  48. })
  49. },
  50. handleClose(){
  51. this.$emit('update:visible', false)
  52. },
  53. }
  54. };
  55. </script>
  56. <style lang="scss" scoped>
  57. .el-dialog__wrapper {
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. }
  62. :deep(.el-form-item__content){
  63. display: flex;
  64. }
  65. :deep(.el-input__inner){
  66. border-top-right-radius: 0;
  67. border-bottom-right-radius: 0;
  68. }
  69. :deep(.el-button){
  70. border-top-left-radius: 0;
  71. border-bottom-left-radius: 0;
  72. background-color: #004a97;
  73. border-color:#004a97;
  74. }
  75. :deep(.el-dialog__header){
  76. padding: 20px;
  77. border-bottom:1px solid #eee;
  78. }
  79. </style>