system-clients 3.2.59 → 3.2.60-test1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gradle/8.0/checksums/checksums.lock +0 -0
- package/.gradle/8.0/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/{7.4 → 8.0}/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.0/executionHistory/executionHistory.lock +0 -0
- package/.gradle/{7.4 → 8.0}/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.0/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/gradlew +14 -4
- package/gradlew.bat +9 -6
- package/package.json +1 -1
- package/src/components/Main.vue +785 -785
- package/src/components/server/Login.vue +564 -568
- package/src/components/server/ModifyPw.vue +125 -111
- package/src/filiale/baole/Login.vue +568 -0
- package/src/filiale/baole/system.js +5 -0
- package/src/plugins/GetLoginInfoService.js +531 -522
- package/static/baole/logo.png +0 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- /package/.gradle/{7.4 → 8.0}/dependencies-accessors/gc.properties +0 -0
- /package/.gradle/{7.4 → 8.0}/fileChanges/last-build.bin +0 -0
- /package/.gradle/{7.4 → 8.0}/gc.properties +0 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,2 +1,2 @@
|
|
1
|
-
#Mon Apr
|
2
|
-
gradle.version=
|
1
|
+
#Mon Apr 17 09:54:17 CST 2023
|
2
|
+
gradle.version=8.0
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,5 +1,6 @@
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
2
2
|
distributionPath=wrapper/dists
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
|
4
|
+
networkTimeout=10000
|
4
5
|
zipStoreBase=GRADLE_USER_HOME
|
5
6
|
zipStorePath=wrapper/dists
|
package/gradlew
CHANGED
@@ -55,7 +55,7 @@
|
|
55
55
|
# Darwin, MinGW, and NonStop.
|
56
56
|
#
|
57
57
|
# (3) This script is generated from the Groovy template
|
58
|
-
# https://github.com/gradle/gradle/blob/
|
58
|
+
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
59
59
|
# within the Gradle project.
|
60
60
|
#
|
61
61
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
@@ -80,10 +80,10 @@ do
|
|
80
80
|
esac
|
81
81
|
done
|
82
82
|
|
83
|
-
|
84
|
-
|
85
|
-
APP_NAME="Gradle"
|
83
|
+
# This is normally unused
|
84
|
+
# shellcheck disable=SC2034
|
86
85
|
APP_BASE_NAME=${0##*/}
|
86
|
+
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
87
87
|
|
88
88
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
89
89
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
@@ -143,12 +143,16 @@ fi
|
|
143
143
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
144
144
|
case $MAX_FD in #(
|
145
145
|
max*)
|
146
|
+
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
147
|
+
# shellcheck disable=SC3045
|
146
148
|
MAX_FD=$( ulimit -H -n ) ||
|
147
149
|
warn "Could not query maximum file descriptor limit"
|
148
150
|
esac
|
149
151
|
case $MAX_FD in #(
|
150
152
|
'' | soft) :;; #(
|
151
153
|
*)
|
154
|
+
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
155
|
+
# shellcheck disable=SC3045
|
152
156
|
ulimit -n "$MAX_FD" ||
|
153
157
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
154
158
|
esac
|
@@ -205,6 +209,12 @@ set -- \
|
|
205
209
|
org.gradle.wrapper.GradleWrapperMain \
|
206
210
|
"$@"
|
207
211
|
|
212
|
+
# Stop when "xargs" is not available.
|
213
|
+
if ! command -v xargs >/dev/null 2>&1
|
214
|
+
then
|
215
|
+
die "xargs is not available"
|
216
|
+
fi
|
217
|
+
|
208
218
|
# Use "xargs" to parse quoted args.
|
209
219
|
#
|
210
220
|
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
package/gradlew.bat
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
@rem limitations under the License.
|
15
15
|
@rem
|
16
16
|
|
17
|
-
@if "%DEBUG%"
|
17
|
+
@if "%DEBUG%"=="" @echo off
|
18
18
|
@rem ##########################################################################
|
19
19
|
@rem
|
20
20
|
@rem Gradle startup script for Windows
|
@@ -25,7 +25,8 @@
|
|
25
25
|
if "%OS%"=="Windows_NT" setlocal
|
26
26
|
|
27
27
|
set DIRNAME=%~dp0
|
28
|
-
if "%DIRNAME%"
|
28
|
+
if "%DIRNAME%"=="" set DIRNAME=.
|
29
|
+
@rem This is normally unused
|
29
30
|
set APP_BASE_NAME=%~n0
|
30
31
|
set APP_HOME=%DIRNAME%
|
31
32
|
|
@@ -40,7 +41,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
|
40
41
|
|
41
42
|
set JAVA_EXE=java.exe
|
42
43
|
%JAVA_EXE% -version >NUL 2>&1
|
43
|
-
if
|
44
|
+
if %ERRORLEVEL% equ 0 goto execute
|
44
45
|
|
45
46
|
echo.
|
46
47
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
@@ -75,13 +76,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
|
75
76
|
|
76
77
|
:end
|
77
78
|
@rem End local scope for the variables with windows NT shell
|
78
|
-
if
|
79
|
+
if %ERRORLEVEL% equ 0 goto mainEnd
|
79
80
|
|
80
81
|
:fail
|
81
82
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
82
83
|
rem the _cmd.exe /c_ return code!
|
83
|
-
|
84
|
-
|
84
|
+
set EXIT_CODE=%ERRORLEVEL%
|
85
|
+
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
86
|
+
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
87
|
+
exit /b %EXIT_CODE%
|
85
88
|
|
86
89
|
:mainEnd
|
87
90
|
if "%OS%"=="Windows_NT" endlocal
|