refundReturns.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>Refund & Returns</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Refund & Returns</p>
  8. <div class="line"></div>
  9. <div class="item" v-html="refundInfo"></div>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. refundInfo: "",
  17. };
  18. },
  19. async created() {
  20. await this.getInfoList();
  21. },
  22. methods: {
  23. getInfoList() {
  24. this.$axios.get("/uk-api/others/uk/refund").then((res) => {
  25. if(res.code==1){
  26. this.refundInfo = res.result.content;
  27. }
  28. });
  29. },
  30. },
  31. };
  32. </script>
  33. <style lang="scss" scoped>
  34. .title {
  35. height: 50px;
  36. font-size: 35px;
  37. font-family: Proxima Nova;
  38. font-weight: bold;
  39. color: #00213B;
  40. text-align: center;
  41. line-height: 50px;
  42. }
  43. .line {
  44. width: 99px;
  45. height: 4px;
  46. background: #e90000;
  47. margin: 15px auto;
  48. }
  49. :deep(.item ) {
  50. width: 1400px;
  51. font-size: 18px;
  52. font-family: Proxima Nova;
  53. font-weight: 400;
  54. color: #333333;
  55. line-height: 24px;
  56. p{
  57. word-wrap:break-word;
  58. }
  59. }
  60. </style>