_id.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <div>
  3. <bxh :bxhType="'design'" :design="+$route.params.id"></bxh>
  4. <ul class="handle_list">
  5. <!-- <li onclick="history.back(-1);">
  6. <img src="@/assets/img/bxh/return.png"/>Return</li> -->
  7. <li @click="openExportFrom">
  8. <img src="@/assets/img/bxh/export.png"/>Export
  9. </li>
  10. <li @click="openEmailFrom">
  11. <img src="@/assets/img/bxh/email.png"/>E-mail
  12. </li>
  13. <!-- <nuxt-link :to="{ name:'render-id',params:{id:+$route.params.id} }" tag="li">
  14. <img src="@/assets/img/bxh/photo.png"/>Render
  15. </nuxt-link> -->
  16. </ul>
  17. <export-dialog :emailForm="exportForm" :visible.sync="exportDialogVisible" :labelWidth="70" :title="'Export'"></export-dialog>
  18. <!-- <design-form-dialog :formData="emailForm" :formConfig="formConfig" :visible.sync="emailDialogVisible" @handleSend="sendMail" :rules="rules" :labelWidth="95" :title="'Email To info@promocollection.uk'"></design-form-dialog> -->
  19. </div>
  20. </template>
  21. <script>
  22. export default {
  23. layout: "blank_layout",
  24. data() {
  25. return {
  26. exportDialogVisible:false,
  27. emailDialogVisible:false,
  28. exportForm:{
  29. Link:'',
  30. Artwork:'',
  31. },
  32. emailForm:{
  33. from:'',
  34. to:'',
  35. cc:'info@promocollection.uk',
  36. subject:'',
  37. job_name:'',
  38. link:'',
  39. pdf:'',
  40. notes:'',
  41. },
  42. // 表单配置
  43. formConfig: [
  44. {
  45. label: "From",
  46. prop: "from",
  47. type: "selectObj",
  48. selectList: {
  49. 1:'',
  50. 2:'on-reply@promocollection.uk'
  51. },
  52. },
  53. {
  54. label: "To",
  55. prop: "to",
  56. type: "input",
  57. },
  58. {
  59. label: "CC",
  60. prop: "cc",
  61. type: "selectObj",
  62. selectList: {
  63. 1:'info@promocollection.com.au',
  64. 2:'astro@promocollection.com.au',
  65. 3:'grace@promocollection.com.au'
  66. },
  67. },
  68. {
  69. label: "Subject",
  70. prop: "subject",
  71. type: "input",
  72. },
  73. {
  74. label: "Job Name",
  75. prop: "job_name",
  76. type: "input",
  77. },
  78. {
  79. label: "Link",
  80. prop: "link",
  81. type: "input",
  82. readonly: true,
  83. },
  84. {
  85. label: "Artwork",
  86. prop: "pdf",
  87. type: "input",
  88. readonly: true,
  89. },
  90. {
  91. label: "Notes",
  92. prop: "notes",
  93. type: "tinymce",
  94. width: '100%',
  95. height: 200,
  96. },
  97. ],
  98. rules:{
  99. from: [{ required: true, message: "Please select", trigger: "change" }],
  100. to: [{ required: true, message: "The recipient is unknown. Specify another recipient", pattern: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,trigger: "blur" }],
  101. subject: [{ required: true, message: "Send this message without a subject?", trigger: "blur" }],
  102. job_name: [{ required: true, message: "Please fill in your job name!", trigger: "blur" }],
  103. link: [{ required: true, message: "Please enter", trigger: "blur" }],
  104. pdf: [{ required: true, message: "Please enter", trigger: "blur" }],
  105. notes: [{ required: true, message: "Please enter", trigger: "blur" }],
  106. },
  107. pdf_id:null
  108. };
  109. },
  110. mounted(){
  111. this.emailForm.link=this.exportForm.Link=window.location.origin+'/3D/'+this.$route.params.id
  112. this.emailForm.pdf=this.exportForm.Artwork=window.location.origin+'/pdf/'+this.$route.params.id
  113. if (this.$cookies.get('can-use-cookie')) {
  114. this.emailForm.from=this.$cookies.get("email")
  115. this.formConfig[0].selectList['1']=this.$cookies.get("email")
  116. }
  117. },
  118. methods: {
  119. openExportFrom() {
  120. this.exportDialogVisible=true
  121. },
  122. openEmailFrom() {
  123. this.emailDialogVisible=true
  124. },
  125. sendMail() {
  126. this.$axios.post("/api/bxh/email", this.emailForm).then(res =>{
  127. this.emailDialogVisible=false
  128. this.$confirm("send successfully", {
  129. confirmButtonText: "OK",
  130. showCancelButton: false,
  131. type: "success",
  132. center: true,
  133. showClose: false,
  134. }).then(() => {
  135. });
  136. }).catch(() => {
  137. });
  138. },
  139. },
  140. };
  141. </script>
  142. <style lang="scss" scoped>
  143. .handle_list {
  144. position: absolute;
  145. right: 30px;
  146. top: 11px;
  147. z-index: 1;
  148. display: flex;
  149. li {
  150. cursor: pointer;
  151. border: 1px solid rgb(201, 201, 201);
  152. margin-left: 5px;
  153. padding-right: 5px;
  154. border-radius: 2px;
  155. display: flex;
  156. justify-content: center;
  157. align-items: center;
  158. }
  159. img {
  160. width: 20px;
  161. padding: 5px;
  162. }
  163. }
  164. </style>