1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <div class="com-main com-width-1400 com-margin-auto">
- <el-breadcrumb separator-class="el-icon-arrow-right">
- <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
- <el-breadcrumb-item>Refund & Returns</el-breadcrumb-item>
- </el-breadcrumb>
- <p class="title">Refund & Returns</p>
- <div class="line"></div>
- <div class="item" v-html="refundInfo"></div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- refundInfo: "",
- };
- },
- async created() {
- await this.getInfoList();
- },
- methods: {
- getInfoList() {
- this.$axios.get("/uk-api/others/uk/refund").then((res) => {
- if(res.code==1){
- this.refundInfo = res.result.content;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .title {
- height: 50px;
- font-size: 35px;
- font-family: Proxima Nova;
- font-weight: bold;
- color: #00213B;
- text-align: center;
- line-height: 50px;
- }
- .line {
- width: 99px;
- height: 4px;
- background: #e90000;
- margin: 15px auto;
- }
- :deep(.item ) {
- width: 1400px;
- font-size: 18px;
- font-family: Proxima Nova;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- p{
- word-wrap:break-word;
- }
- }
- </style>
|