system-clients 3.2.52 → 3.2.54-test-1
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/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/gradlew +234 -0
- package/gradlew.bat +89 -0
- package/package.json +1 -1
- package/src/components/common/ProgressBase.vue +83 -0
- package/src/components/server/Login.vue +566 -568
- package/src/filiale/furuike/Main.vue +827 -827
- package/src/filiale/zhoukou/Main.vue +2 -2
- package/src/plugins/GetLoginInfoService.js +528 -521
- package/src/system.js +5 -1
package/src/system.js
CHANGED
@@ -28,7 +28,7 @@ import TestResSelect from './components/server/TestResSelect'
|
|
28
28
|
import RoleSelector from "./components/server/RoleSelector";
|
29
29
|
|
30
30
|
// BAinformation备案信息展示(空不展示, 传入什么展示什么,可以传标签)
|
31
|
-
export default function (val,filiale, {showLogin = false, show_daiBan = false, BAinformation = null} = {}) {
|
31
|
+
export default function (val,filiale, {showLogin = false, show_daiBan = false, show_yiDi= false, BAinformation = null} = {}) {
|
32
32
|
console.log(val,filiale,showLogin)
|
33
33
|
//验证码开关赋值
|
34
34
|
if(val!=null){
|
@@ -38,6 +38,8 @@ export default function (val,filiale, {showLogin = false, show_daiBan = false, B
|
|
38
38
|
GetLoginInfoService.depPrompt=showLogin
|
39
39
|
//展示待办赋值
|
40
40
|
GetLoginInfoService.showDaiBan=show_daiBan
|
41
|
+
//展示异地登录
|
42
|
+
GetLoginInfoService.showYiDi=show_yiDi
|
41
43
|
// 备案信息复制
|
42
44
|
GetLoginInfoService.BAinformation = BAinformation
|
43
45
|
Vue.use(GetLoginInfoService)
|
@@ -68,6 +70,8 @@ export default function (val,filiale, {showLogin = false, show_daiBan = false, B
|
|
68
70
|
Vue.component('param-page', (resolve) => { require(['./components/parammanage/ParamPage'], resolve) })
|
69
71
|
// 参数管理
|
70
72
|
Vue.component('single-page', (resolve) => { require(['./components/parammanage/SinglePage'], resolve) })
|
73
|
+
//进度条插件
|
74
|
+
Vue.component('progress-base', (resolve) => { require(['./components/common/ProgressBase'], resolve) })
|
71
75
|
|
72
76
|
// 参数管理(旧)
|
73
77
|
Vue.component('param-manages', (resolve) => { require(['./components/parammanage/ParamManages'], resolve) })
|