feat:订单详情页面组件封装
This commit is contained in:
19
pages/order/components/OrderStatusInfo/index.vue
Normal file
19
pages/order/components/OrderStatusInfo/index.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<view class="order-status">
|
||||
<view class="status-header">
|
||||
<image class="status-icon" src="/static/icons/clock.png"></image>
|
||||
<text class="status-text">已取消</text>
|
||||
</view>
|
||||
<view class="status-description">
|
||||
您已取消待支付的订单
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
// No dynamic data required for this static example
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@import './styles/index.scss';
|
||||
</style>
|
||||
Reference in New Issue
Block a user