_newsName.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <div
  4. class="content"
  5. v-html="articleDetails"></div>
  6. <div
  7. id="formTag"
  8. v-show="showMargin"></div>
  9. <iframe
  10. v-show="$route.params.newsName === 'indent-ideas'"
  11. frameborder="0"
  12. ref="iframe"
  13. id="formFrame"
  14. src=""
  15. style="height: 1100px; width: 100%; border: none"></iframe>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. showMargin: true,
  23. articleDetails: '',
  24. routerParams: {},
  25. profileform: {},
  26. defaultURL:
  27. 'https://forms.zohopublic.com/promocollectionau/form/PCIndentSourcingForm/formperma/I8RpkeF104QfGCw2oK_PUZtj5lCwdwZEY5QJJpvllVI',
  28. }
  29. },
  30. computed: {
  31. userInfo() {
  32. return this.$store.state.userInfo || {}
  33. },
  34. computedURL() {
  35. if (this.userInfo.email) {
  36. const config = {
  37. name: this.userInfo.contacts,
  38. phone: this.userInfo.phone,
  39. email: this.userInfo.email,
  40. company: this.userInfo.company,
  41. }
  42. let query = ''
  43. for (const key in config) {
  44. if (config[key]) {
  45. query += `&${key}=${encodeURIComponent(config[key])}`
  46. }
  47. }
  48. query = query.slice(1)
  49. return this.defaultURL + '?' + query
  50. } else {
  51. return this.defaultURL
  52. }
  53. },
  54. },
  55. watch: {
  56. userInfo() {
  57. if (this.$route.params.newsName === 'indent-ideas') {
  58. setTimeout(() => {
  59. const target = document.getElementById('formFrame')
  60. target.src = this.computedURL
  61. }, 1000)
  62. }
  63. },
  64. },
  65. async created() {
  66. const paramsData = this.$cookies.get('can-use-cookie') ? this.$cookies.get('paramsData') : ''
  67. if (paramsData) {
  68. this.routerParams = paramsData
  69. } else {
  70. this.routerParams = this.$route.params
  71. if (this.$cookies.get('can-use-cookie')) this.$cookies.set('paramsData', this.$route.params)
  72. }
  73. await this.getArticleDetails()
  74. this.showMargin = true
  75. },
  76. mounted() {
  77. if (this.$route.params.newsName === 'indent-ideas') {
  78. setTimeout(() => {
  79. const target = document.getElementById('formFrame')
  80. target.src = this.computedURL
  81. }, 1000)
  82. }
  83. setTimeout(() => {
  84. this.showMargin = false
  85. }, 2000)
  86. },
  87. // 这个路由在设计的时候就不对劲, 结构层级只有1层, 但是跳转和传参传了两个params, 导致只有一个参数体现在了url上, 改动页面刷新的时候就会丢失参数id.
  88. beforeDestroy() {
  89. this.$cookies.remove('paramsData')
  90. },
  91. methods: {
  92. getArticleDetails() {
  93. let title = this.$route.params.newsName || ''
  94. title = decodeURIComponent(title)
  95. this.$axios
  96. .post('/uk-api/home/articleDetail', {
  97. title: title.replaceAll('-', ' '),
  98. // state: 'au',
  99. })
  100. .then(res => {
  101. if (res.code === 1) {
  102. this.articleDetails = res.result.content.replace(/&nbsp;/gi, '')
  103. }
  104. })
  105. .catch(() => {})
  106. },
  107. },
  108. }
  109. </script>
  110. <style lang="scss" scoped>
  111. :deep(.content) {
  112. margin: 10px auto;
  113. font-size: 18px;
  114. font-family: Proxima Nova;
  115. font-weight: 400;
  116. color: #333333;
  117. line-height: 24px;
  118. p {
  119. text-align: center !important;
  120. word-wrap: break-word;
  121. margin: 10px;
  122. }
  123. div {
  124. text-align: center !important;
  125. }
  126. }
  127. #formTag {
  128. height: 120px;
  129. }
  130. </style>