@lambo-design/login-form 1.0.0-beta.42 → 1.0.0-beta.43
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 +3 -3
- package/src/login-qr.vue +64 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambo-design/login-form",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.43",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"registry": "https://registry.npmjs.org/"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@lambo-design/
|
|
14
|
-
"@lambo-design/
|
|
13
|
+
"@lambo-design/core": "^4.7.1-beta.180",
|
|
14
|
+
"@lambo-design/shared": "^1.0.0-beta.364"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
|
package/src/login-qr.vue
CHANGED
|
@@ -490,5 +490,69 @@ export default {
|
|
|
490
490
|
box-shadow: none;
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
+
/* 企业微信登录组件容器 */
|
|
494
|
+
.wx-saas {
|
|
495
|
+
#ww_login {
|
|
496
|
+
width: 100% !important;
|
|
497
|
+
max-width: 220px !important;
|
|
498
|
+
margin: 0 auto !important;
|
|
499
|
+
display: block !important;
|
|
500
|
+
}
|
|
501
|
+
.lambo-login-qrcode ::v-deep #ww_login iframe,
|
|
502
|
+
.qrcode-img-wrapper ::v-deep iframe {
|
|
503
|
+
position: relative;
|
|
504
|
+
top: -60px !important;
|
|
505
|
+
height: 360px !important;
|
|
506
|
+
border: none !important;
|
|
507
|
+
width: 100% !important;
|
|
508
|
+
overflow: hidden !important;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
.wx-private {
|
|
512
|
+
#ww_login {
|
|
513
|
+
width: 100% !important;
|
|
514
|
+
margin: 0 auto !important;
|
|
515
|
+
display: block !important;
|
|
516
|
+
}
|
|
517
|
+
.lambo-login-qrcode ::v-deep #ww_login iframe,
|
|
518
|
+
.qrcode-img-wrapper ::v-deep iframe {
|
|
519
|
+
position: relative;
|
|
520
|
+
top: 25px !important;
|
|
521
|
+
height: 400px !important;
|
|
522
|
+
border: none !important;
|
|
523
|
+
width: 100% !important;
|
|
524
|
+
overflow: hidden !important;
|
|
525
|
+
}
|
|
493
526
|
|
|
527
|
+
.qrcode-img-wrapper {
|
|
528
|
+
height: 400px !important;
|
|
529
|
+
min-height: 260px !important;
|
|
530
|
+
display: flex;
|
|
531
|
+
justify-content: center;
|
|
532
|
+
align-items: center;
|
|
533
|
+
overflow: hidden;
|
|
534
|
+
width: 100%;
|
|
535
|
+
position: relative;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
/* 钉钉登录组件容器 */
|
|
539
|
+
#dingtalk_login {
|
|
540
|
+
width: 100% !important;
|
|
541
|
+
max-width: 260px !important;
|
|
542
|
+
height: 260px !important;
|
|
543
|
+
margin: 0 auto !important;
|
|
544
|
+
display: block !important;
|
|
545
|
+
overflow: hidden;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/* 钉钉iframe样式 - 减少上方留白 */
|
|
549
|
+
.lambo-login-qrcode ::v-deep #dingtalk_login iframe,
|
|
550
|
+
.qrcode-img-wrapper ::v-deep iframe {
|
|
551
|
+
position: relative;
|
|
552
|
+
top: -60px !important;
|
|
553
|
+
height: 360px !important;
|
|
554
|
+
border: none !important;
|
|
555
|
+
width: 100% !important;
|
|
556
|
+
overflow: hidden !important;
|
|
557
|
+
}
|
|
494
558
|
</style>
|