From 18ec03bcfd9f9b95ff03f5919be071ca3130cd70 Mon Sep 17 00:00:00 2001 From: lzx_win <2602107437@qq.com> Date: Thu, 5 Jun 2025 08:26:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=88=E6=9C=AC=E4=BF=AE=E5=A4=8D=E6=8F=90?= =?UTF-8?q?=E4=BA=A4;25/06/05?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 ++++ .idea/compiler.xml | 31 ++++++++++++++++ .idea/encodings.xml | 14 +++++++ .idea/jarRepositories.xml | 40 ++++++++++++++++++++ .idea/misc.xml | 12 ++++++ .idea/vcs.xml | 6 +++ admin-hanhai-vue/.env.development | 2 +- admin-hanhai-vue/src/views/xcx/ClockinAuthList.vue | 23 ++++++++---- admin-hanhai-vue/src/views/xcx/ClockinLogList.vue | 2 +- .../src/views/xcx/ClockinTeamLogList.vue | 4 +- .../src/views/xcx/modules/ClockinAuthForm.vue | 11 +++++- .../src/views/xcx/modules/ClockinTeamLogForm.vue | 9 ++++- .../modules/clockinauth/entity/ClockinAuth.java | 9 +++-- .../controller/ClockinLogController.java | 12 ++++-- .../modules/clockinlog/entity/ClockinLog.java | 9 +++-- .../clockinteamlog/entity/ClockinTeamLog.java | 7 ++-- .../modules/hanHaiMember/entity/HanHaiMember.java | 6 ++- .../src/main/resources/application-dev.yml | 43 +++++++++++++++------- .../src/main/resources/application-prod.yml | 4 +- .../src/main/resources/application-test.yml | 4 +- 20 files changed, 205 insertions(+), 51 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..1fbbfe4 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..83975c2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..ee58f12 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d5cd614 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/admin-hanhai-vue/.env.development b/admin-hanhai-vue/.env.development index 2ad6386..4a46d52 100644 --- a/admin-hanhai-vue/.env.development +++ b/admin-hanhai-vue/.env.development @@ -1,5 +1,5 @@ NODE_ENV=development -VUE_APP_API_BASE_URL=http://127.0.0.1:8081/clockin-api +VUE_APP_API_BASE_URL=http://localhost:8083/clockin-api/ VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview VUE_APP_MAP_KEY=WPKBZ-OKICI-ZAIGE-U6TQ4-RPQIV-OXBJO diff --git a/admin-hanhai-vue/src/views/xcx/ClockinAuthList.vue b/admin-hanhai-vue/src/views/xcx/ClockinAuthList.vue index c27dc53..3abd4ad 100644 --- a/admin-hanhai-vue/src/views/xcx/ClockinAuthList.vue +++ b/admin-hanhai-vue/src/views/xcx/ClockinAuthList.vue @@ -1,12 +1,19 @@