消息物流跳转

This commit is contained in:
ghusermoon 2020-08-20 16:16:34 +08:00
parent 9eaf84d496
commit 91a655e224
2 changed files with 8 additions and 3 deletions

View File

@ -62,7 +62,7 @@ export default {
}
.price{
display: flex;
// align-items: center;
align-items: center;
// align-content: flex-end;
justify-content: space-between;
margin-top: 16rpx;

View File

@ -10,7 +10,7 @@
</view>
<view class="xiantiao"></view>
<view class="title">{{item.title}}</view>
<view class="images_about">
<view class="images_about" @click="viewLogistics(item.order_id)">
<image :src="item.picture"></image>
<view>
<text>{{item.summary}}</text>
@ -40,7 +40,12 @@
this.actives = res.data.data;
}
})
}
},
viewLogistics(id) {
this.$u.route('/pageE/order/Logistics', {
oid: id,
});
}
},
components:{
}