修复bug

This commit is contained in:
2026-01-30 19:00:31 +08:00
parent fcc976680d
commit 3de5e9ebe9
91 changed files with 4966 additions and 847 deletions

View File

@@ -1,6 +1,7 @@
<template>
<view class="page">
<!-- TopBar (navigationStyle: custom 时需要自己做顶部栏) -->
<AdminLayout currentPage="api-waybill">
<view class="page">
<!-- TopBar (navigationStyle: custom 时需要自己做顶部<E9A1B6>? -->
<view class="topbar">
<view class="status-bar" />
<view class="nav">
@@ -22,25 +23,27 @@
<view class="container">
<view class="card">
<text class="h2">电子面单配置</text>
<text class="p">TODO在这里实现 电子面单配置 的页面内容。</text>
<text class="p">TODO在这里实现 电子面单配置 的页面内容<EFBFBD>?/text>
<view class="divider" />
<text class="p muted">提示当前为可跑的占位模板TopBar + Container + Card。</text>
<text class="p muted">提示当前为可跑的占位模板TopBar + Container + Card<EFBFBD>?/text>
</view>
<view class="card">
<text class="h3">建议你下一步先补齐</text>
<view class="list">
<text class="li">1接口拉取/保存数据API 协议对齐后端</text>
<text class="li">2表/表单:搜索、分页、增删改</text>
<text class="li">3权限按钮/路由级权限控制</text>
<text class="li">1接口拉取/保存数据API 协议对齐后端<EFBFBD>?/text>
<text class="li">2<EFBFBD>?表单:搜索、分页、增删改</text>
<text class="li">3权限按钮/路由级权限控<EFBFBD>?/text>
</view>
</view>
</view>
</scroll-view>
</view>
</AdminLayout>
</template>
<script setup lang="uts">
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
const goBack = () => {
uni.navigateBack({ delta: 1 })
}
@@ -53,7 +56,7 @@ const onPrimaryAction = () => {
<style scoped>
.page { width: 100%; height: 100%; background-color: #f6f7fb; }
/* 顶部栏(适配沉浸式状态栏 */
/* 顶部栏(适配沉浸式状态栏<EFBFBD>?*/
.topbar { position: sticky; top: 0; z-index: 10; background-color: #fff; }
.status-bar { height: var(--status-bar-height); }
.nav { height: 44px; display: flex; align-items: center; padding: 0 12px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #eef0f5; }
@@ -79,3 +82,4 @@ const onPrimaryAction = () => {
.list { margin-top: 8px; }
.li { font-size: 13px; color: #333; line-height: 20px; }
</style>