837390164@qq.com 433ba1147e 菜单页面调整 3 hari lalu
..
HIS-患者列表功能图标 433ba1147e 菜单页面调整 3 hari lalu
docs a303233a09 提交更新 5 bulan lalu
public 32528e0e46 feat: 更新前端接口调用结构,添加 session 支持 5 bulan lalu
src 433ba1147e 菜单页面调整 3 hari lalu
.env.development e673a19c43 提交更新 1 bulan lalu
.env.production 151ab2778b 提交更新 2 bulan lalu
.gitignore 32528e0e46 feat: 更新前端接口调用结构,添加 session 支持 5 bulan lalu
Caddyfile e673a19c43 提交更新 1 bulan lalu
DEPLOYMENT_CHECKLIST.md e673a19c43 提交更新 1 bulan lalu
DEPLOYMENT_GUIDE.md e673a19c43 提交更新 1 bulan lalu
HIS-患者列表功能图标.zip 433ba1147e 菜单页面调整 3 hari lalu
NGINX_TROUBLESHOOTING.md e673a19c43 提交更新 1 bulan lalu
README.md 32528e0e46 feat: 更新前端接口调用结构,添加 session 支持 5 bulan lalu
dev.err e673a19c43 提交更新 1 bulan lalu
dist.rar 433ba1147e 菜单页面调整 3 hari lalu
esbuild_err.txt c0a77eac2e 提交更新 6 hari lalu
eslint.config.js 32528e0e46 feat: 更新前端接口调用结构,添加 session 支持 5 bulan lalu
index.html 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu
nginx-simple.conf e673a19c43 提交更新 1 bulan lalu
nginx.conf b0e74290a0 提交更新 1 bulan lalu
package-lock.json 5acf3cb9d6 提交更新 3 bulan lalu
package.json 5acf3cb9d6 提交更新 3 bulan lalu
project.config.json 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu
proxy-server.js e673a19c43 提交更新 1 bulan lalu
serve.js 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu
server.js e673a19c43 提交更新 1 bulan lalu
tsc_check.txt c0a77eac2e 提交更新 6 hari lalu
tsc_out.txt b411f0c405 提交更新 2 bulan lalu
tsconfig.app.json 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu
tsconfig.json 32528e0e46 feat: 更新前端接口调用结构,添加 session 支持 5 bulan lalu
tsconfig.node.json 32528e0e46 feat: 更新前端接口调用结构,添加 session 支持 5 bulan lalu
vite.config.ts e673a19c43 提交更新 1 bulan lalu
启动开发服务器.bat 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu
启动开发服务器.ps1 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu
登录页面说明.md 084c51a83e feat: 自定义DRG分组查询功能完善与Bug修复 5 bulan lalu

README.md

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])