CategoryNoData.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div class="com-category-no-data">
  3. <div class="title">Search Results for"{{ keyword }}"</div>
  4. <div class="sub-title">
  5. Sorry your search for "{{ keyword }}" returned no results.
  6. </div>
  7. <div class="content">
  8. Your search term retured no results. You can use the search box above. If
  9. you need further help,
  10. <br />
  11. <span
  12. class="link"
  13. @click="toIndent"
  14. >please fill in your requirements</span
  15. >, we will get in touch with you as soon as possible.
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. name: 'ComCategoryNoData',
  22. computed: {
  23. keyword() {
  24. const query = this.$route.query
  25. const params = this.$route.params
  26. if (query.keyword && query.keyword.length) return query.keyword
  27. if (params.thirdCategory && params.thirdCategory.length)
  28. return params.thirdCategory
  29. if (params.secondCategory && params.secondCategory.length)
  30. return params.secondCategory
  31. if (params.firstCategory && params.firstCategory.length)
  32. return params.firstCategory
  33. return ''
  34. },
  35. },
  36. methods: {
  37. toIndent() {
  38. const target = document.getElementById('indentLink')
  39. if (target) target.click()
  40. },
  41. },
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. .com-category-no-data {
  46. padding: 150px 24px 0;
  47. }
  48. .title {
  49. font-size: 26px;
  50. }
  51. .sub-title {
  52. margin-top: 44px;
  53. font-size: 22px;
  54. }
  55. .content {
  56. margin-top: 36px;
  57. font-size: 16px;
  58. line-height: 22px;
  59. }
  60. .link {
  61. cursor: pointer;
  62. color: blue;
  63. }
  64. </style>