aboutus.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item>About Us</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">About Us</p>
  8. <div class="line"></div>
  9. <div
  10. class="item"
  11. v-html="info"></div>
  12. <div></div>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. info: '',
  20. }
  21. },
  22. async created() {
  23. await this.$store.dispatch('getShopInfo').then(res => {
  24. this.info = res.aboutus
  25. })
  26. },
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .title {
  31. height: 50px;
  32. font-size: 35px;
  33. font-family: Proxima Nova;
  34. font-weight: bold;
  35. color: #00213b;
  36. text-align: center;
  37. line-height: 50px;
  38. }
  39. .line {
  40. width: 99px;
  41. height: 4px;
  42. background: #e90000;
  43. margin: 15px auto;
  44. }
  45. :deep(.item) {
  46. width: 1400px;
  47. font-size: 14pt;
  48. color: #333;
  49. line-height: 1.2;
  50. p {
  51. word-wrap: break-word;
  52. }
  53. ul {
  54. list-style-type: unset;
  55. margin-top: 20px;
  56. margin-bottom: 20px;
  57. padding-left: 40px;
  58. }
  59. ol {
  60. list-style-type: decimal;
  61. margin-top: 20px;
  62. margin-bottom: 20px;
  63. padding-left: 40px;
  64. }
  65. }
  66. </style>