jiuyiUniapp/jiuyi2/components/public/jy-commodity-logistics-card/index.vue

28 lines
798 B
Vue

<!-- 商品物流卡片 -->
<template>
<view class="jy-commodity-logistics-card">
<uni-section titleColor="#3D3D3D" title="商品物流状态商品物流状态商品物流状态..."
@click="goto('/pages/mine/balance-details/index')">
<template v-slot:decoration>
<image class="shop-image" src="" mode="aspectFill"></image>
</template>
<template v-slot:right>
<uni-icons type="right" color="#D8D8D8"></uni-icons>
</template>
</uni-section>
</view>
</template>
<script setup>
import { ref } from 'vue'
</script>
<style scoped lang="scss">
.shop-image {
height: 84rpx;
width: 84rpx;
background-color: #D8D8D8;
border-radius: 10rpx;
margin-right: 10rpx;
}
</style>