43 lines
806 B
Plaintext
43 lines
806 B
Plaintext
<template>
|
|
<view class="page-container">
|
|
<view class="page-content">
|
|
<view class="placeholder-card">
|
|
<text class="placeholder-title">正在跳转...</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
import { onMounted } from 'vue'
|
|
import { openRoute } from '@/layouts/admin/store/adminNavStore.uts'
|
|
|
|
onMounted(() => {
|
|
// 跳转到最新的订单管理页面
|
|
openRoute('OrderList')
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page-container {
|
|
padding: 20px;
|
|
min-height: 100vh;
|
|
background: #f5f5f5;
|
|
}
|
|
.page-content {
|
|
background: #fff;
|
|
border-radius: 4px;
|
|
padding: 24px;
|
|
}
|
|
.placeholder-card {
|
|
text-align: center;
|
|
padding: 60px 20px;
|
|
}
|
|
.placeholder-title {
|
|
display: block;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #666;
|
|
}
|
|
</style>
|