n20-common-lib 2.8.13 → 2.8.14
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/package.json +1 -1
- package/src/components/LoginTemporary/form.vue +5 -0
- package/src/components/LoginTemporary/index.vue +6 -0
- package/src/components/LoginTemporary/indexN.vue +6 -0
- package/style/fonts/element-icons.535877f5.woff +0 -0
- package/style/fonts/element-icons.732389de.ttf +0 -0
- package/style/fonts/iconfont.09d221ee.woff +0 -0
- package/style/fonts/iconfont.1c4bfacc.ttf +0 -0
- package/style/fonts/iconfont.a6f34dc7.woff2 +0 -0
- package/style/fonts/iconfont.f4c32765.ttf +0 -0
- package/style/index.css +3 -0
- package/theme/blue.css +3 -0
- package/theme/cctcRed.css +3 -0
- package/theme/fonts/element-icons.535877f5.woff +0 -0
- package/theme/fonts/element-icons.732389de.ttf +0 -0
- package/theme/fonts/iconfont.09d221ee.woff +0 -0
- package/theme/fonts/iconfont.1c4bfacc.ttf +0 -0
- package/theme/fonts/iconfont.a6f34dc7.woff2 +0 -0
- package/theme/fonts/iconfont.f4c32765.ttf +0 -0
- package/theme/green.css +3 -0
- package/theme/lightBlue.css +3 -0
- package/theme/orange.css +3 -0
- package/theme/purple.css +3 -0
- package/theme/red.css +3 -0
- package/theme/yellow.css +3 -0
package/package.json
CHANGED
|
@@ -182,6 +182,10 @@ export default {
|
|
|
182
182
|
type: String,
|
|
183
183
|
default: ''
|
|
184
184
|
},
|
|
185
|
+
syncRelated: {
|
|
186
|
+
type: Function,
|
|
187
|
+
default: undefined
|
|
188
|
+
},
|
|
185
189
|
asyncRelaNos: {
|
|
186
190
|
type: Boolean,
|
|
187
191
|
default: false
|
|
@@ -582,6 +586,7 @@ export default {
|
|
|
582
586
|
} else {
|
|
583
587
|
this.$router.replace('/')
|
|
584
588
|
}
|
|
589
|
+
this.syncRelated && this.syncRelated()
|
|
585
590
|
})
|
|
586
591
|
},
|
|
587
592
|
// 获取用户基本信息
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
:before-login="beforeLogin"
|
|
7
7
|
:login-types="loginTypes"
|
|
8
8
|
:login-then="loginThen"
|
|
9
|
+
:syncRelated="syncRelated"
|
|
9
10
|
:async-rela-nos="asyncRelaNos"
|
|
10
11
|
:show-forget-btn="showForgetBtn"
|
|
11
12
|
style="display: none"
|
|
@@ -25,6 +26,7 @@
|
|
|
25
26
|
:before-login="beforeLogin"
|
|
26
27
|
:login-types="loginTypes"
|
|
27
28
|
:login-then="loginThen"
|
|
29
|
+
:syncRelated="syncRelated"
|
|
28
30
|
:async-rela-nos="asyncRelaNos"
|
|
29
31
|
:show-image-code="showImageCode"
|
|
30
32
|
:show-forget-btn="showForgetBtn"
|
|
@@ -86,6 +88,10 @@ export default {
|
|
|
86
88
|
type: Object,
|
|
87
89
|
default: undefined
|
|
88
90
|
},
|
|
91
|
+
syncRelated: {
|
|
92
|
+
type: Function,
|
|
93
|
+
default: undefined
|
|
94
|
+
},
|
|
89
95
|
asyncRelaNos: {
|
|
90
96
|
type: Boolean,
|
|
91
97
|
default: false
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
:login-types="loginTypes"
|
|
8
8
|
:login-then="loginThen"
|
|
9
9
|
:async-rela-nos="asyncRelaNos"
|
|
10
|
+
:syncRelated="syncRelated"
|
|
10
11
|
:show-forget-btn="showForgetBtn"
|
|
11
12
|
:extra-form="extraForm"
|
|
12
13
|
style="display: none"
|
|
@@ -87,6 +88,7 @@
|
|
|
87
88
|
:login-types="loginTypes"
|
|
88
89
|
:login-then="loginThenT"
|
|
89
90
|
:async-rela-nos="asyncRelaNos"
|
|
91
|
+
:syncRelated="syncRelated"
|
|
90
92
|
:extra-form="extraForm"
|
|
91
93
|
:show-image-code="imgCode"
|
|
92
94
|
:show-forget-btn="showForgetBtn"
|
|
@@ -187,6 +189,10 @@ export default {
|
|
|
187
189
|
type: Object,
|
|
188
190
|
default: undefined
|
|
189
191
|
},
|
|
192
|
+
syncRelated: {
|
|
193
|
+
type: Function,
|
|
194
|
+
default: undefined
|
|
195
|
+
},
|
|
190
196
|
asyncRelaNos: {
|
|
191
197
|
type: Boolean,
|
|
192
198
|
default: false
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|