Files
YGChatCS/pages/order/components/OrderStatusInfo/index.vue
2025-07-13 12:17:41 +08:00

19 lines
449 B
Vue

<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>