jiuyiUniapp/jiuyi2/components/shop/order/logistics.vue

30 lines
650 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
/**
* 物流入口
*/
// 跳转
function link(url) {
uni.navigateTo({
url: '/pages/shop/order/logistics'
})
}
</script>
<template>
<view class="detail rows oh ptb20 plr30 bfff" @click="link">
<image class="wh100 br10"
src="https://img13.360buyimg.com/n1/jfs/t1/117234/35/34799/82687/6449f2b4Fd6e2eef9/a754c5e178c9e9be.jpg.avif"
mode="aspectFill" />
<view class="col f1 ml20 f28">
<view class="c999">2024.12.10 18:00</view>
<view class="mt10 f30">你的快递正在路上请耐心等待</view>
</view>
<uni-icons type="right" color="#999" size="30rpx" />
</view>
</template>
<style>
</style>