refactor: rename openhis → healthlink-his (complete rebranding)

- Maven modules: openhis-* → healthlink-his-*
- Java packages: com.openhis → com.healthlink.his (3,278 files)
- Configuration: context-path, DB schema, logger, package scan
- Frontend: API paths /openhis/ → /healthlink-his/ (30 files)
- Database: healthlink_his schema with 188 tables (copied from hisdev)
- Verified: 18/18 API tests passed, 10-concurrent smoke test passed
This commit is contained in:
2026-06-05 13:02:15 +08:00
parent 4ff36fba20
commit 473a2c974f
3062 changed files with 9822 additions and 9822 deletions

View File

@@ -18,7 +18,7 @@ export default defineConfig(({ mode, command }) => {
},
// 部署生产环境和开发环境下的URL。
// 默认情况下vite 会假设你的应用是被部署在一个域名的根路径上
// 例如 https://www.openHIS.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.openhis.vip/admin/,则设置 baseUrl 为 /admin/。
// 例如 https://www.openHIS.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.healthlink-his.vip/admin/,则设置 baseUrl 为 /admin/。
base: VITE_APP_ENV === 'production' ? '/' : '/',
plugins: createVitePlugins(env, command === 'build'),
resolve: {
@@ -41,7 +41,7 @@ export default defineConfig(({ mode, command }) => {
proxy: {
// https://cn.vitejs.dev/config/#server-proxy
'/dev-api': {
target: process.env.VITE_API_PROXY || 'http://localhost:18080/openhis',
target: process.env.VITE_API_PROXY || 'http://localhost:18080/healthlink-his',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/dev-api/, ''),
},