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

30 lines
650 B
Vue
Raw Normal View History

2024-12-18 15:46:27 +08:00
<script setup>
/**
* 物流入口
*/
2024-12-27 15:03:48 +08:00
// 跳转
function link(url) {
uni.navigateTo({
url: '/pages/shop/order/logistics'
})
}
2024-12-18 15:46:27 +08:00
</script>
<template>
2024-12-27 15:03:48 +08:00
<view class="detail rows oh ptb20 plr30 bfff" @click="link">
2024-12-18 15:46:27 +08:00
<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>