feat:订单详情页面组件封装
This commit is contained in:
22
pages/order/detail.vue
Normal file
22
pages/order/detail.vue
Normal 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>
|
||||
Reference in New Issue
Block a user