Project.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <section class="project-wrap">
  3. <div class="project">
  4. <div
  5. v-show="false"
  6. @click="toProductBuilder"
  7. class="flex btn-nav">
  8. <img src="@/assets/img/builder.png" /><span>Product builder</span>
  9. </div>
  10. <!-- <div
  11. @click="handleAdd"
  12. class="flex btn-nav">
  13. <img src="@/assets/img/add.png" /><span>Add to my Project</span>
  14. </div>
  15. <div @click="openZoho" class="flex">
  16. <img src="@/assets/img/question.png" /><span>Quick Question</span>
  17. </div> -->
  18. <a
  19. href="https://zfrmz.com/qOMwwPGF2hVWnNheXp3h"
  20. target="_target"
  21. v-if="isLogin && /\@promocollection.uk/.test(userInfo.email)">
  22. <div class="flex btn-nav">
  23. <img src="@/assets/img/tick.png" /><span>Ticket</span>
  24. </div>
  25. </a>
  26. <a
  27. id="quickEnqriryLink"
  28. target="_blank">
  29. <div
  30. class="flex btn-nav"
  31. v-if="isLogin">
  32. <img
  33. src="@/assets/img/xunjia.png"
  34. style="opacity: 0.8"
  35. alt="" /><span>Quick Enquiry</span>
  36. </div>
  37. </a>
  38. <a
  39. target="_blank"
  40. :href="`/product-record/${productInfo.product_code}?version=${productInfo.record.version}`"
  41. v-if="shouldButtonRecordShow">
  42. <div class="flex btn-nav">
  43. <img
  44. src="@/assets/img/tick.png" /><span>Item Record</span>
  45. </div>
  46. </a>
  47. </div>
  48. </section>
  49. </template>
  50. <script>
  51. export default {
  52. props: {
  53. productInfo: {
  54. type: Object,
  55. default: () => {
  56. return {}
  57. },
  58. },
  59. },
  60. data() {
  61. return {
  62. defaultURL: 'https://zfrmz.com/felY59ar2z3FaOTSRxmZ',
  63. }
  64. },
  65. computed: {
  66. isLogin() {
  67. return !!this.$store.state.userInfo?.email
  68. },
  69. userInfo() {
  70. return this.$store.state.userInfo || {}
  71. },
  72. shouldButtonRecordShow() {
  73. return (
  74. this.isLogin &&
  75. /\@promocollection.uk/.test(this.userInfo.email) &&
  76. this.productInfo.record &&
  77. this.productInfo.record?.record_reason?.length
  78. )
  79. },
  80. },
  81. mounted() {
  82. this.generateLink()
  83. },
  84. methods: {
  85. generateLink() {
  86. const target = document.getElementById('quickEnqriryLink')
  87. const config = {
  88. name: this.userInfo.contacts,
  89. phone: this.userInfo.phone,
  90. email: this.userInfo.email,
  91. company: this.userInfo.company,
  92. product: `${this.productInfo.product_name} & ${this.productInfo.product_code}`,
  93. }
  94. let query = ''
  95. for (const key in config) {
  96. if (config[key]) {
  97. query += `&${key}=${encodeURIComponent(config[key])}`
  98. }
  99. }
  100. query = query.slice(1)
  101. target.href = this.defaultURL + '?' + query
  102. },
  103. handleAdd() {
  104. this.$emit('handleAdd')
  105. },
  106. openZoho() {
  107. document.querySelector('#zsiq_float').click()
  108. },
  109. toProductBuilder() {
  110. if (!this.$utils.checkLogin()) return
  111. this.$emit('save-selected-data')
  112. setTimeout(() => {
  113. location.href =
  114. location.origin + `/product-builder/${this.$route.params.code}`
  115. }, 0)
  116. },
  117. },
  118. }
  119. </script>
  120. <style lang="scss" scoped>
  121. // $width: 100px;
  122. @media screen and (max-width: 1400px) {
  123. .btn-nav {
  124. span {
  125. display: none !important;
  126. }
  127. }
  128. }
  129. // @media screen and (min-width:1401px){
  130. // .project-wrap{
  131. // right:10px;
  132. // }
  133. // }
  134. .project-wrap {
  135. position: fixed;
  136. right: 10px;
  137. top: 172px;
  138. z-index: 1;
  139. background-color: transparent;
  140. font-size: 14px;
  141. .project {
  142. .btn-nav {
  143. text-align: center;
  144. height: 40px;
  145. border-radius: 40px;
  146. padding: 0 10px;
  147. cursor: pointer;
  148. border: none;
  149. color: #fff;
  150. margin-bottom: 15px;
  151. box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  152. background-color: #004a97;
  153. img {
  154. width: 20px;
  155. height: 20px;
  156. }
  157. }
  158. a {
  159. &:hover {
  160. div {
  161. background-color: #013269;
  162. }
  163. }
  164. span {
  165. display: inline-block;
  166. margin-left: 5px;
  167. text-align: center;
  168. flex:1;
  169. }
  170. }
  171. }
  172. }
  173. </style>