|
@@ -51,14 +51,14 @@
|
|
|
<div id="app">
|
|
|
<button @click="getData">获取数据</button>
|
|
|
<div class="box clearfix">
|
|
|
- <div class="card-content">
|
|
|
+ <div v-for="item in dataList" class="card-content">
|
|
|
<div class="card-img">
|
|
|
- <img src="http://shop-static.edu.koobietech.com/2019/04/b3558ee506fb4589bfaa94a543226477.jpg" alt="图片">
|
|
|
+ <img v-bind:src="item.pic" alt="图片">
|
|
|
</div>
|
|
|
<div class="card-info">
|
|
|
- <h3>阿迪达斯官方 adidas 三叶草 NITE JOGGER 男子经典鞋BD7956</h3>
|
|
|
- <p>运动鞋/休闲鞋</p>
|
|
|
- <p>¥0.01</p>
|
|
|
+ <h3>{{item.prodName}}</h3>
|
|
|
+ <p>{{item.brief}}</p>
|
|
|
+ <p>¥{{item.price}}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -77,8 +77,11 @@
|
|
|
},
|
|
|
methods:{
|
|
|
getData:function(){
|
|
|
+ let that = this;
|
|
|
ajaxFun("GET", "http://shop-api.edu.koobietech.com/prod/tagProdList", function (res) {
|
|
|
- console.log(res);
|
|
|
+ // console.log(res.data[0].productDtoList);
|
|
|
+ // console.log(that.dataList)
|
|
|
+ that.dataList = res.data[0].productDtoList
|
|
|
})
|
|
|
}
|
|
|
}
|