aboutus.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: 18px;
  48. font-family: Proxima Nova;
  49. font-weight: 400;
  50. color: #333333;
  51. line-height: 24px;
  52. p {
  53. word-wrap: break-word;
  54. }
  55. ul {
  56. list-style-type: unset;
  57. margin-top: 20px;
  58. margin-bottom: 20px;
  59. padding-left: 40px;
  60. }
  61. ol {
  62. list-style-type: decimal;
  63. margin-top: 20px;
  64. margin-bottom: 20px;
  65. padding-left: 40px;
  66. }
  67. }
  68. </style>