前端项目实战之B端常用的可表单编辑的信息展示组件

前言:前端B端开发,有许多形如表格般展示信息,同时要求在里面实现部分信息编辑的功能

一、组件封装

  • 组件名: FormInfo
  • 入口文件:index.tsx
  • 样式文件:index.module.less

index.tsx

import {
   
    
     isEmpty } from '@/utils';
import type {
   
    
     FormInstance, FormProps } from 'antd';

猜你喜欢

转载自blog.csdn.net/yiguoxiaohai/article/details/127312124