termsConditions.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: 18px;
  57. font-family: Proxima Nova;
  58. font-weight: 400;
  59. color: #333333;
  60. line-height: 24px;
  61. p {
  62. word-wrap: break-word;
  63. }
  64. }
  65. </style>