termsConditions.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. },
  24. methods: {
  25. getInfoList() {
  26. this.$axios.get('/uk-api/others/clause').then(res => {
  27. if (res.code == 1) {
  28. this.termsConditionsInfo = res.result.content
  29. }
  30. })
  31. },
  32. },
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. .title {
  37. height: 50px;
  38. font-size: 35px;
  39. font-family: Proxima Nova;
  40. font-weight: bold;
  41. color: #00213b;
  42. text-align: center;
  43. line-height: 50px;
  44. }
  45. .line {
  46. width: 99px;
  47. height: 4px;
  48. background: #e90000;
  49. margin: 15px auto;
  50. }
  51. :deep(.item) {
  52. width: 1400px;
  53. font-size: 18px;
  54. font-family: Proxima Nova;
  55. font-weight: 400;
  56. color: #333333;
  57. line-height: 24px;
  58. p {
  59. word-wrap: break-word;
  60. }
  61. ul {
  62. list-style-type: unset;
  63. margin-top: 20px;
  64. margin-bottom: 20px;
  65. padding-left: 40px;
  66. }
  67. ol {
  68. list-style-type: decimal;
  69. margin-top: 20px;
  70. margin-bottom: 20px;
  71. padding-left: 40px;
  72. }
  73. }
  74. </style>