36 lines
572 B
Vue
36 lines
572 B
Vue
<template>
|
|
<view class="order-detail-page">
|
|
<view class="detail-content">
|
|
<text class="placeholder-text">订单详情页面开发中...</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
onLoad(options) {
|
|
console.log('订单ID:', options.id);
|
|
// TODO: 加载订单详情数据
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.order-detail-page {
|
|
min-height: 100vh;
|
|
background-color: #f5f5f5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.detail-content {
|
|
padding: 40rpx;
|
|
}
|
|
|
|
.placeholder-text {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
</style>
|