n20-common-lib 2.15.4 → 2.15.5
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
CHANGED
|
@@ -548,9 +548,9 @@ export default {
|
|
|
548
548
|
},
|
|
549
549
|
getConfiguration() {
|
|
550
550
|
getJsonc('portal/server-config.jsonc', null, true)
|
|
551
|
-
.then(({ loginConf }) => {
|
|
551
|
+
.then(({ loginConf, fileRequired }) => {
|
|
552
552
|
this.fileText = loginConf?.sLogan?.fileText
|
|
553
|
-
this.fileRequired =
|
|
553
|
+
this.fileRequired = fileRequired ?? true
|
|
554
554
|
})
|
|
555
555
|
.catch(() => {
|
|
556
556
|
this.fileText = ''
|
|
@@ -151,9 +151,9 @@ export async function getCertInfo(dn) {
|
|
|
151
151
|
// 检测dn是否匹配
|
|
152
152
|
if (indexDn === -1) {
|
|
153
153
|
console.log(DNList)
|
|
154
|
-
resolve(-1)
|
|
155
|
-
Message.error('当前Ukey不匹配!')
|
|
156
|
-
|
|
154
|
+
// resolve(-1)
|
|
155
|
+
// Message.error('当前Ukey不匹配!')
|
|
156
|
+
resolve({ Container, Application })
|
|
157
157
|
} else {
|
|
158
158
|
resolve({ Container, Application })
|
|
159
159
|
}
|