修复了交易物流
This commit is contained in:
parent
e58f571de4
commit
3d840a0546
@ -2,18 +2,18 @@
|
|||||||
<view id="actives">
|
<view id="actives">
|
||||||
<!-- 活动消息推送 -->
|
<!-- 活动消息推送 -->
|
||||||
<view class="activity" v-for="(item, index) in actives" :key="index">
|
<view class="activity" v-for="(item, index) in actives" :key="index">
|
||||||
<view class="times">{{item.type}}</view>
|
<view class="times">{{item.kd_time}}</view>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<view class="store_name">
|
<view class="store_name">
|
||||||
<image src="../../pageE/static/mine/1.png"></image>
|
<image src="../../pageE/static/mine/1.png"></image>
|
||||||
<view>小时代</view>
|
<view>小时代</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="xiantiao"></view>
|
<view class="xiantiao"></view>
|
||||||
<view class="title">{{item.name}}</view>
|
<view class="title">{{item.title}}</view>
|
||||||
<view class="images_about">
|
<view class="images_about">
|
||||||
<image :src="item.url"></image>
|
<image :src="item.picture"></image>
|
||||||
<view>
|
<view>
|
||||||
<text>{{item.about}}</text>
|
<text>{{item.summary}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -35,8 +35,9 @@
|
|||||||
methods: {
|
methods: {
|
||||||
getCartList() {
|
getCartList() {
|
||||||
this.$u.post("message/orderDeliveryList",{page: this.page}).then(res => {
|
this.$u.post("message/orderDeliveryList",{page: this.page}).then(res => {
|
||||||
|
console.log(res.data.data)
|
||||||
if (res.errCode == 0) {
|
if (res.errCode == 0) {
|
||||||
this.actives == res.data;
|
this.actives = res.data.data;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -46,7 +47,10 @@
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" >
|
||||||
|
page{
|
||||||
|
background-color: #ECECEC;
|
||||||
|
}
|
||||||
#actives{
|
#actives{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user