@uxda/appkit 1.2.64 → 1.2.65
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/dist/appkit.css +205 -0
- package/dist/index.js +752 -293
- package/package.json +1 -1
- package/src/components/dd-search/index.vue +5 -9
- package/src/notice/components/NoticeBanner.vue +1 -1
- package/src/notice/components/NoticeEntry.vue +93 -0
- package/src/notice/components/NoticeList.vue +278 -0
- package/src/notice/components/index.ts +3 -1
- package/src/notice/components/useCommonList.ts +86 -0
- package/src/notice/types.ts +25 -0
- package/src/shared/components/DeviceVersion.vue +1 -1
package/dist/appkit.css
CHANGED
|
@@ -1304,4 +1304,209 @@ page {
|
|
|
1304
1304
|
color: #353535;
|
|
1305
1305
|
opacity: 0.4;
|
|
1306
1306
|
font-size: 12px;
|
|
1307
|
+
}
|
|
1308
|
+
.notice-entry {
|
|
1309
|
+
position: fixed;
|
|
1310
|
+
right: 43px;
|
|
1311
|
+
top: 21px;
|
|
1312
|
+
min-width: 66px;
|
|
1313
|
+
padding: 0 12px 0 15px;
|
|
1314
|
+
text-align: center;
|
|
1315
|
+
box-sizing: border-box;
|
|
1316
|
+
height: 25px;
|
|
1317
|
+
line-height: 11px;
|
|
1318
|
+
color: #855f0b;
|
|
1319
|
+
font-size: 13px;
|
|
1320
|
+
background: #ffdf68;
|
|
1321
|
+
border-radius: 50px 0 0 50px;
|
|
1322
|
+
display: flex;
|
|
1323
|
+
align-items: center;
|
|
1324
|
+
justify-content: center;
|
|
1325
|
+
}
|
|
1326
|
+
.notice-entry-img {
|
|
1327
|
+
width: 20px;
|
|
1328
|
+
height: 20px;
|
|
1329
|
+
}
|
|
1330
|
+
.notice-entry-icon {
|
|
1331
|
+
position: absolute;
|
|
1332
|
+
background-color: red;
|
|
1333
|
+
width: 6px;
|
|
1334
|
+
height: 6px;
|
|
1335
|
+
border-radius: 50%;
|
|
1336
|
+
top: 1px;
|
|
1337
|
+
left: 27px;
|
|
1338
|
+
}
|
|
1339
|
+
.dd-search {
|
|
1340
|
+
padding: 8px 12px;
|
|
1341
|
+
display: flex;
|
|
1342
|
+
align-items: center;
|
|
1343
|
+
background: #fefefe;
|
|
1344
|
+
}
|
|
1345
|
+
.dd-search.bordered {
|
|
1346
|
+
border-bottom: 1px solid #ddd;
|
|
1347
|
+
}
|
|
1348
|
+
.dd-search.inNavbar {
|
|
1349
|
+
padding: 0;
|
|
1350
|
+
width: 235px;
|
|
1351
|
+
z-index: 10;
|
|
1352
|
+
position: absolute;
|
|
1353
|
+
left: 40px;
|
|
1354
|
+
background: transparent;
|
|
1355
|
+
}
|
|
1356
|
+
.dd-search.inNavbar .dd-search__form {
|
|
1357
|
+
background: #f1f3f5;
|
|
1358
|
+
border-color: transparent;
|
|
1359
|
+
}
|
|
1360
|
+
.dd-search.focus .dd-search__form {
|
|
1361
|
+
border-color: #017fff;
|
|
1362
|
+
}
|
|
1363
|
+
.dd-search__placeholder {
|
|
1364
|
+
color: #b4b4b4;
|
|
1365
|
+
}
|
|
1366
|
+
.dd-search__form {
|
|
1367
|
+
flex: 1;
|
|
1368
|
+
box-sizing: border-box;
|
|
1369
|
+
height: 36px;
|
|
1370
|
+
border-radius: 5px;
|
|
1371
|
+
display: flex;
|
|
1372
|
+
align-items: center;
|
|
1373
|
+
padding: 0 10px;
|
|
1374
|
+
background-color: #f1f3f5;
|
|
1375
|
+
}
|
|
1376
|
+
.dd-search__control {
|
|
1377
|
+
font-size: 13px;
|
|
1378
|
+
flex: 1;
|
|
1379
|
+
}
|
|
1380
|
+
.dd-search__input {
|
|
1381
|
+
width: 100%;
|
|
1382
|
+
box-sizing: border-box;
|
|
1383
|
+
padding: 0 10px;
|
|
1384
|
+
caret-color: #017fff;
|
|
1385
|
+
}
|
|
1386
|
+
.dd-search__prefix, .dd-search__suffix {
|
|
1387
|
+
width: 15px !important;
|
|
1388
|
+
height: 15px !important;
|
|
1389
|
+
}
|
|
1390
|
+
.dd-search__btn {
|
|
1391
|
+
height: 33px;
|
|
1392
|
+
line-height: 33px;
|
|
1393
|
+
padding: 0 10px;
|
|
1394
|
+
font-size: 16px;
|
|
1395
|
+
color: #017fff;
|
|
1396
|
+
}
|
|
1397
|
+
.dd-search.disabled .dd-search__suffix {
|
|
1398
|
+
display: none;
|
|
1399
|
+
}
|
|
1400
|
+
.dd-search.disabled .dd-search__control {
|
|
1401
|
+
flex: 1;
|
|
1402
|
+
width: fit-content;
|
|
1403
|
+
}
|
|
1404
|
+
.notice-list {
|
|
1405
|
+
height: 100vh;
|
|
1406
|
+
overflow: hidden;
|
|
1407
|
+
display: flex;
|
|
1408
|
+
flex-direction: column;
|
|
1409
|
+
}
|
|
1410
|
+
.notice-list .wrapper {
|
|
1411
|
+
height: 100%;
|
|
1412
|
+
padding: 10px 12px;
|
|
1413
|
+
box-sizing: border-box;
|
|
1414
|
+
}
|
|
1415
|
+
.notice-list .wrapper .content {
|
|
1416
|
+
height: 100%;
|
|
1417
|
+
background: #ffffff;
|
|
1418
|
+
border-radius: 10px;
|
|
1419
|
+
}
|
|
1420
|
+
.notice-list .wrapper .content .card {
|
|
1421
|
+
margin: 0 10px;
|
|
1422
|
+
min-height: 64px;
|
|
1423
|
+
background: #fff;
|
|
1424
|
+
position: relative;
|
|
1425
|
+
padding: 10px;
|
|
1426
|
+
}
|
|
1427
|
+
.notice-list .wrapper .content .card::before {
|
|
1428
|
+
content: "";
|
|
1429
|
+
position: absolute;
|
|
1430
|
+
left: 2px;
|
|
1431
|
+
top: 0;
|
|
1432
|
+
height: 18px;
|
|
1433
|
+
width: 1px;
|
|
1434
|
+
background: #d8d8d8;
|
|
1435
|
+
}
|
|
1436
|
+
.notice-list .wrapper .content .card::after {
|
|
1437
|
+
content: "";
|
|
1438
|
+
position: absolute;
|
|
1439
|
+
left: 2px;
|
|
1440
|
+
top: 18px;
|
|
1441
|
+
bottom: 0;
|
|
1442
|
+
width: 1px;
|
|
1443
|
+
background: #d8d8d8;
|
|
1444
|
+
}
|
|
1445
|
+
.notice-list .wrapper .content .card:first-child::before {
|
|
1446
|
+
display: none;
|
|
1447
|
+
}
|
|
1448
|
+
.notice-list .wrapper .content .card:last-child::after {
|
|
1449
|
+
display: none;
|
|
1450
|
+
}
|
|
1451
|
+
.notice-list .wrapper .content .card .point {
|
|
1452
|
+
width: 5px;
|
|
1453
|
+
height: 5px;
|
|
1454
|
+
background-color: #d8d8d8;
|
|
1455
|
+
border-radius: 50%;
|
|
1456
|
+
position: absolute;
|
|
1457
|
+
left: 0;
|
|
1458
|
+
top: 18px;
|
|
1459
|
+
z-index: 9;
|
|
1460
|
+
}
|
|
1461
|
+
.notice-list .wrapper .content .card .time {
|
|
1462
|
+
font-size: 13px;
|
|
1463
|
+
color: #353535;
|
|
1464
|
+
line-height: 19px;
|
|
1465
|
+
opacity: 0.2;
|
|
1466
|
+
margin-bottom: 5px;
|
|
1467
|
+
}
|
|
1468
|
+
.notice-list .wrapper .content .card .text {
|
|
1469
|
+
font-size: 14px;
|
|
1470
|
+
line-height: 20px;
|
|
1471
|
+
color: #9fa0a1;
|
|
1472
|
+
}
|
|
1473
|
+
.notice-list .wrapper .content .card.active .point {
|
|
1474
|
+
background-color: #f43309;
|
|
1475
|
+
}
|
|
1476
|
+
.notice-list .wrapper .content .card.active .text {
|
|
1477
|
+
color: #171a1d;
|
|
1478
|
+
font-size: 13px;
|
|
1479
|
+
}
|
|
1480
|
+
.notice-list .wrapper .content .card.active .text.tit {
|
|
1481
|
+
font-size: 15px;
|
|
1482
|
+
margin-bottom: 4px;
|
|
1483
|
+
}
|
|
1484
|
+
.notice-list .no-data {
|
|
1485
|
+
background-color: #fff;
|
|
1486
|
+
display: flex;
|
|
1487
|
+
align-items: center;
|
|
1488
|
+
flex-direction: column;
|
|
1489
|
+
height: 100%;
|
|
1490
|
+
}
|
|
1491
|
+
.notice-list .no-data .text {
|
|
1492
|
+
height: 20px;
|
|
1493
|
+
font-size: 14px;
|
|
1494
|
+
color: #7e7e7e;
|
|
1495
|
+
line-height: 20px;
|
|
1496
|
+
}
|
|
1497
|
+
.notice-list .no-data-img {
|
|
1498
|
+
width: 238px;
|
|
1499
|
+
height: 157px;
|
|
1500
|
+
margin-top: 105px;
|
|
1501
|
+
margin-bottom: 19px;
|
|
1502
|
+
}
|
|
1503
|
+
.notice-list-file {
|
|
1504
|
+
font-size: 12px;
|
|
1505
|
+
color: #017fff;
|
|
1506
|
+
}
|
|
1507
|
+
.notice-list .cue-text {
|
|
1508
|
+
font-size: 13px;
|
|
1509
|
+
color: rgba(60, 60, 60, 0.5);
|
|
1510
|
+
padding: 30px 0 calc(30px + env(safe-area-inset-bottom, 0px));
|
|
1511
|
+
text-align: center;
|
|
1307
1512
|
}
|