消息物流跳转 #268

Merged
hansu merged 1 commits from zhy into master 2020-08-20 08:17:16 +00:00
2 changed files with 8 additions and 3 deletions
Showing only changes of commit 91a655e224 - Show all commits

View File

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

View File

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