Compare commits

3 Commits
main ... dev

Author SHA1 Message Date
lik
b7def15527 tmp 2026-06-14 11:46:48 +08:00
lik
7b9142bc66 tmp 2026-06-12 09:01:05 +08:00
lik
3e14a3b57c start 2026-06-08 12:11:01 +08:00
8 changed files with 52 additions and 0 deletions

18
.gitmodules vendored Normal file
View File

@@ -0,0 +1,18 @@
[submodule "api/user"]
path = api/user
url = http://gitea.huashengtec.com/xJourney/api_user.git
[submodule "api/health"]
path = api/health
url = http://gitea.huashengtec.com/xJourney/api_health.git
[submodule "ui/wxapp_escort"]
path = ui/wxapp_escort
url = http://gitea.huashengtec.com/xJourney/wxapp_escort.git
[submodule "ui/wxapp_escort_admin"]
path = ui/wxapp_escort_admin
url = http://gitea.huashengtec.com/xJourney/wxapp_escort_admin.git
[submodule "ui/web_tcm"]
path = ui/web_tcm
url = http://gitea.huashengtec.com/xJourney/web_tcm.git
[submodule "agent/escort"]
path = agent/escort
url = http://gitea.huashengtec.com/xJourney/agent_escort.git

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "user-api",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceFolder}\\api\\user\\",
"program": "${workspaceFolder}\\api\\user\\index.js"
},
{
"type": "node",
"request": "launch",
"name": "health-api",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceFolder}\\api\\health\\",
"program": "${workspaceFolder}\\api\\health\\index.js"
}
]
}

1
agent/escort Submodule

Submodule agent/escort added at 0aa3cc40f3

1
api/health Submodule

Submodule api/health added at 344b1d7332

1
api/user Submodule

Submodule api/user added at 70307d4eb8

1
ui/web_tcm Submodule

Submodule ui/web_tcm added at 2014ec4b2b

1
ui/wxapp_escort Submodule

Submodule ui/wxapp_escort added at 3bbf4b0449

1
ui/wxapp_escort_admin Submodule

Submodule ui/wxapp_escort_admin added at f8f7afceb8