refund.vue
959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<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>