fix 大小写不敏感问题

This commit is contained in:
2026-04-08 11:14:20 +08:00
parent ace94a31ad
commit dc393e607f
6 changed files with 2 additions and 2 deletions
@@ -0,0 +1,17 @@
<script setup>
import { useRouter } from 'vue-router'
import { usePageTitle } from '@/composables/usePageTitle'
usePageTitle('purchase.add_part')
const router = useRouter()
const orderId = router.params.id
</script>
<template>
<div class="mx-auto max-w-6xl px-6 py-6">
<h2 class="mb-6 text-2xl font-bold text-gray-900 dark:text-white">Order#{{ orderId }}</h2>
<div class="rounded-xl border border-gray-200 bg-white px-12 py-12 text-center shadow-lg dark:border-dk-muted dark:bg-dk-card">
<p class="text-gray-400">{{ $t('message.functionality_not_yet_developed') }}</p>
</div>
</div>
</template>