24 lines
611 B
Vue
24 lines
611 B
Vue
<!-- 交易完成 -->
|
|
<template>
|
|
<view class="jy-transaction-completed">
|
|
<JyCommodityLogisticsCard></JyCommodityLogisticsCard>
|
|
<!-- 店家 商品信息 -->
|
|
<JyFund></JyFund>
|
|
|
|
<!-- 精选 -->
|
|
<JyCherryPick />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
//商品物流
|
|
import JyCommodityLogisticsCard from '@/components/public/jy-commodity-logistics-card'
|
|
// 店家 商品信息
|
|
import JyFund from '@/components/public/jy-fund'
|
|
//精选
|
|
import JyCherryPick from '@/components/public/jy-cherry-pick';
|
|
|
|
|
|
</script>
|
|
<style scoped lang="scss"></style> |