继续完善页面

This commit is contained in:
2026-02-02 21:45:59 +08:00
parent f4af5dded9
commit 93b42a277a
19 changed files with 2785 additions and 672 deletions

View File

@@ -1,18 +1,15 @@
<template>
<AdminLayout :currentPage="currentPage">
<view class="page">
<view class="header">
<text class="title">{{ title }}</text>
<text class="sub-title">订单配置,设置订单相关参数</text>
</view>
<view class="page">
<view class="header">
<text class="title">{{ title }}</text>
<text class="sub-title">订单配置,设置订单相关参数</text>
</view>
</AdminLayout>
</view>
</template>
<script setup lang="uts">
import { ref } from 'vue'
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
const currentPage = ref<string>('order-config')
const title = ref<string>('订单配置')
</script>