system-clients 3.2.56 → 3.2.57-furuike

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.
Files changed (32) hide show
  1. package/.gradle/8.0/checksums/checksums.lock +0 -0
  2. package/.gradle/8.0/dependencies-accessors/dependencies-accessors.lock +0 -0
  3. package/.gradle/{buildOutputCleanup/outputFiles.bin → 8.0/executionHistory/executionHistory.bin} +0 -0
  4. package/.gradle/8.0/executionHistory/executionHistory.lock +0 -0
  5. package/.gradle/{6.5.1 → 8.0}/fileHashes/fileHashes.bin +0 -0
  6. package/.gradle/8.0/fileHashes/fileHashes.lock +0 -0
  7. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  8. package/gradle/wrapper/gradle-wrapper.properties +6 -0
  9. package/gradlew +244 -0
  10. package/gradlew.bat +92 -0
  11. package/package.json +2 -2
  12. package/src/components/server/Login.vue +1 -1
  13. package/src/filiale/chengtou/system.js +5 -5
  14. package/src/filiale/furuike/Main.vue +822 -827
  15. package/src/filiale/qianneng/system.js +8 -8
  16. package/src/filiale/tongchuan/Login.vue +561 -561
  17. package/src/filiale/zhoukou/Main.vue +807 -807
  18. package/src/filiale/zhoukou/system.js +6 -6
  19. package/src/plugins/GetLoginInfoService.js +2 -3
  20. package/src/system.js +1 -5
  21. package/.gradle/6.5.1/executionHistory/executionHistory.bin +0 -0
  22. package/.gradle/6.5.1/executionHistory/executionHistory.lock +0 -0
  23. package/.gradle/6.5.1/fileHashes/fileHashes.lock +0 -0
  24. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  25. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  26. package/.gradle/checksums/checksums.lock +0 -0
  27. package/src/components/common/ProgressBase.vue +0 -83
  28. package/src/filiale/gehua/Main.vue +0 -807
  29. package/src/filiale/gehua/system.js +0 -6
  30. /package/.gradle/{6.5.1 → 8.0/dependencies-accessors}/gc.properties +0 -0
  31. /package/.gradle/{6.5.1 → 8.0}/fileChanges/last-build.bin +0 -0
  32. /package/.gradle/{vcs-1 → 8.0}/gc.properties +0 -0
@@ -1,6 +1,6 @@
1
- // 分公司特殊组件页面注册
2
-
3
- let specialComp = {
4
- 'home-page': (resolve) => require(['./Main'], resolve)
5
- }
6
- exports.specialComp = specialComp
1
+ // 分公司特殊组件页面注册
2
+
3
+ let specialComp = {
4
+ 'home-page': (resolve) => require(['./Main'], resolve)
5
+ }
6
+ exports.specialComp = specialComp
@@ -6,9 +6,6 @@ let loginGen = async function (name, password, cue) {
6
6
  data = '$'+cryptJS.RSAEncrypt(JSON.stringify(data))
7
7
  let getLogin = await Vue.resetpost('/rs/logic/getLogin', data, {resolveMsg: null, rejectMsg: null})
8
8
  if (getLogin.data.states === '登录成功') {
9
- //获取jwt
10
- Vue.$login.jwt = getLogin.data.jwt
11
- Vue.$login.jwtNew = getLogin.data.jwtNew
12
9
  // 调用远程登录服务,获取所有有权访问的功能
13
10
  data = {username: name, password: password}
14
11
  data = cryptJS.RSAEncrypt(JSON.stringify(data))
@@ -18,6 +15,8 @@ let loginGen = async function (name, password, cue) {
18
15
  })
19
16
  console.log('登陆获取Util', JSON.stringify(resource.data))
20
17
  Vue.$login.f = resource.data
18
+ //获取jwt
19
+ Vue.$login.jwt = getLogin.data.jwt
21
20
  // 把登录用户添加到cookie里
22
21
  Vue.cookie.set('loginId', Vue.$login.f.id)
23
22
 
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, show_yiDi= false, BAinformation = null} = {}) {
31
+ export default function (val,filiale, {showLogin = false, show_daiBan = false, BAinformation = null} = {}) {
32
32
  console.log(val,filiale,showLogin)
33
33
  //验证码开关赋值
34
34
  if(val!=null){
@@ -38,8 +38,6 @@ export default function (val,filiale, {showLogin = false, show_daiBan = false, s
38
38
  GetLoginInfoService.depPrompt=showLogin
39
39
  //展示待办赋值
40
40
  GetLoginInfoService.showDaiBan=show_daiBan
41
- //展示异地登录
42
- GetLoginInfoService.showYiDi=show_yiDi
43
41
  // 备案信息复制
44
42
  GetLoginInfoService.BAinformation = BAinformation
45
43
  Vue.use(GetLoginInfoService)
@@ -70,8 +68,6 @@ export default function (val,filiale, {showLogin = false, show_daiBan = false, s
70
68
  Vue.component('param-page', (resolve) => { require(['./components/parammanage/ParamPage'], resolve) })
71
69
  // 参数管理
72
70
  Vue.component('single-page', (resolve) => { require(['./components/parammanage/SinglePage'], resolve) })
73
- //进度条插件
74
- Vue.component('progress-base', (resolve) => { require(['./components/common/ProgressBase'], resolve) })
75
71
 
76
72
  // 参数管理(旧)
77
73
  Vue.component('param-manages', (resolve) => { require(['./components/parammanage/ParamManages'], resolve) })
@@ -1,2 +0,0 @@
1
- #Mon Mar 06 15:27:14 CST 2023
2
- gradle.version=6.5.1
Binary file
@@ -1,83 +0,0 @@
1
- <template>
2
- <div class="m-progress" style="width:100%">
3
- <div class="m-progress-outer">
4
- <div class="m-progress-inner">
5
- <div :class="['u-progress-bg', {'u-success-bg':getProgress(progress,width) >= 100}]" :style="{width: `${getProgress(progress,width) >= 100 ? 100:getProgress(progress,width)}%`,height: `${strokeWidth}px`}"></div>
6
- </div>
7
- </div>
8
- <div v-if="showInfo">
9
- <svg class="u-success" v-if="getProgress(progress,width)>=100" viewBox="64 64 896 896" data-icon="check-circle" aria-hidden="true" focusable="false"><path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 0 1-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"></path></svg>
10
- <p class="u-progress-text" v-else>{{getProgress(progress,width)>=100 ? 100:getProgress(progress,width) }}%</p>
11
- </div>
12
- </div>
13
- </template>
14
- <script>
15
- export default {
16
- name: 'Progress',
17
- props: {
18
- width: { // 进度条总宽度
19
- type: Number,
20
- default: 100
21
- },
22
- progress: { // 当前进度
23
- type: Number,
24
- default: 0
25
- },
26
- strokeWidth: { // 进度条线的宽度
27
- type: Number,
28
- default: 13
29
- },
30
- showInfo: { // 是否显示进度数值或状态图标
31
- type: Boolean,
32
- default: true
33
- }
34
- },
35
-
36
- methods: {
37
- // 进度的转换
38
- getProgress(val1,val2){
39
- if (val1 === 0 || val2 === 0) {
40
- return 0
41
- }
42
- return (Math.round(val1/val2 * 10000) /100)
43
- },
44
- }
45
- }
46
- </script>
47
- <style lang="less" scoped>
48
- .m-progress {
49
- height: 13px;
50
- margin: 0 auto;
51
- display: flex;
52
- .m-progress-outer {
53
- width: 61%;
54
- .m-progress-inner {
55
- display: inline-block;
56
- width: 100%;
57
- background: #f1f0f0;
58
- border-radius: 13px;
59
- .u-progress-bg {
60
- // background: #1890FF;
61
- background: linear-gradient(to right, rgb(16, 142, 233), rgb(135, 208, 104));
62
- border-radius: 100px;
63
- transition: all .3s cubic-bezier(.08,.82,.17,1);
64
- }
65
- .u-success-bg {
66
- border-radius: 100px;
67
- background: #52C41A;
68
- }
69
- }
70
- }
71
- .u-success {
72
- width: 12px;
73
- height: 12px;
74
- fill: #52C41A;
75
- margin-left: 2px;
76
- }
77
- .u-progress-text {
78
- font-size: 12px;
79
- margin-left: 2px;
80
- color: rgba(0,0,0,.45);
81
- }
82
- }
83
- </style>