termsConditions.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>Terms & Conditions</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Terms & Conditions</p>
  8. <div class="line"></div>
  9. <div
  10. class="item"
  11. v-html="termsConditionsInfo"></div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. termsConditionsInfo: '',
  19. }
  20. },
  21. async created() {
  22. // await this.getInfoList();
  23. await this.$store.dispatch('getShopInfo').then(res => {
  24. this.termsConditionsInfo = res.terms
  25. })
  26. },
  27. methods: {
  28. // getInfoList() {
  29. // this.$axios.get('/others/clause').then(res => {
  30. // if (res.code == 1) {
  31. // this.termsConditionsInfo = res.result.content
  32. // }
  33. // })
  34. // },
  35. },
  36. }
  37. </script>
  38. <style lang="scss" scoped>
  39. .title {
  40. height: 50px;
  41. font-size: 35px;
  42. font-family: Proxima Nova;
  43. font-weight: bold;
  44. color: #00213b;
  45. text-align: center;
  46. line-height: 50px;
  47. }
  48. .line {
  49. width: 99px;
  50. height: 4px;
  51. background: #e90000;
  52. margin: 15px auto;
  53. }
  54. :deep(.item) {
  55. width: 1400px;
  56. font-size: 14pt;
  57. color: #333;
  58. line-height: 1.2;
  59. p {
  60. word-wrap: break-word;
  61. }
  62. ul {
  63. list-style-type: unset;
  64. margin-top: 20px;
  65. margin-bottom: 20px;
  66. padding-left: 40px;
  67. }
  68. ol {
  69. list-style-type: decimal;
  70. margin-top: 20px;
  71. margin-bottom: 20px;
  72. padding-left: 40px;
  73. }
  74. }
  75. </style>