feat:订单详情页面组件封装

This commit is contained in:
duanshuwen
2025-07-13 12:17:41 +08:00
parent 34a62d2f3e
commit 8766bb3720
88 changed files with 1021 additions and 47 deletions

22
pages/order/detail.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<view class="order-detail-wrapper">
<image class="icon-back" src="./images/back.png" />
<OrderStatusInfo />
<GoodsInfo />
<UserInfo />
<NoticeInfo />
<OrderInfo />
</view>
</template>
<script setup>
import OrderStatusInfo from './components/OrderStatusInfo/index.vue'
import GoodsInfo from './components/GoodsInfo/index.vue'
import UserInfo from './components/UserInfo/index.vue'
import NoticeInfo from './components/NoticeInfo/index.vue'
import OrderInfo from './components/OrderInfo/index.vue'
</script>
<style lang="scss" scoped>
@import './styles/detail.scss';
</style>