评查点新增修改逻辑完善

This commit is contained in:
2025-04-02 10:06:09 +08:00
parent 29699df14a
commit cbf5c967ff
5 changed files with 470 additions and 205 deletions
+1 -4
View File
@@ -1,6 +1,3 @@
import React from 'react';
import { Link } from '@remix-run/react';
interface PageHeaderProps {
title: string;
onSave?: () => void;
@@ -8,7 +5,7 @@ interface PageHeaderProps {
export function PageHeader({ title, onSave }: PageHeaderProps) {
return (
<div className="flex justify-between items-center">
<div className="flex justify-between items-center pb-2">
<h1 className="text-xl font-medium text-gray-800">{title}</h1>
<div>
<button