refund.vue 959 Bytes
<template>
    <div class="refund">
        <product-list :title="title" :list="list"></product-list>
    </div>
</template>

<script>
    const $ = require('yoho-jquery');
    const productList = require('home/refund/product-list.vue');

    module.exports = {
        data() {
            return {
                title: '请选择退货商品',
                list: []
            };
        },
        created() {
            $.ajax({
                url: '/home/refund/order'
            }).then(res => {
                if (res.data && res.data.goodsList) {
                    res.data.goodsList.forEach(product => {
                        product.checked = false;
                    });
                    this.list = res.data.goodsList;
                }
            });
        },
        methods: {},
        components: {
            productList
        }
    };
</script>

<style>
    .main-wrap {
        background: #f6f6f6;
    }
</style>