@zscreate/zhxy-app-component 1.0.76 → 1.0.78
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.
|
@@ -1251,7 +1251,7 @@ export default {
|
|
|
1251
1251
|
<style lang="scss" scoped>
|
|
1252
1252
|
@import "../../static/uni.css";
|
|
1253
1253
|
|
|
1254
|
-
$form-item-bottom-padding:
|
|
1254
|
+
$form-item-bottom-padding: 20rpx; // 每个组件底部间隔
|
|
1255
1255
|
|
|
1256
1256
|
icon {
|
|
1257
1257
|
position: absolute;
|
|
@@ -1261,7 +1261,7 @@ icon {
|
|
|
1261
1261
|
}
|
|
1262
1262
|
|
|
1263
1263
|
.u_close {
|
|
1264
|
-
padding:
|
|
1264
|
+
padding: 20rpx 20rpx;
|
|
1265
1265
|
position: absolute;
|
|
1266
1266
|
right: 0;
|
|
1267
1267
|
top: 72%;
|
|
@@ -1285,7 +1285,7 @@ radio-group label {
|
|
|
1285
1285
|
}
|
|
1286
1286
|
|
|
1287
1287
|
checkbox-group label {
|
|
1288
|
-
padding-left:
|
|
1288
|
+
padding-left: 60rpx;
|
|
1289
1289
|
margin-left: -30rpx;
|
|
1290
1290
|
|
|
1291
1291
|
}
|
|
@@ -1297,14 +1297,14 @@ checkbox-group label {
|
|
|
1297
1297
|
|
|
1298
1298
|
.editCorrent {
|
|
1299
1299
|
position: absolute;
|
|
1300
|
-
right:
|
|
1301
|
-
top:
|
|
1302
|
-
width:
|
|
1303
|
-
height:
|
|
1300
|
+
right: 20upx;
|
|
1301
|
+
top: 10upx;
|
|
1302
|
+
width: 50upx;
|
|
1303
|
+
height: 50upx;
|
|
1304
1304
|
|
|
1305
1305
|
img {
|
|
1306
|
-
width:
|
|
1307
|
-
height:
|
|
1306
|
+
width: 30upx;
|
|
1307
|
+
height: 30upx;
|
|
1308
1308
|
}
|
|
1309
1309
|
}
|
|
1310
1310
|
|
|
@@ -1312,15 +1312,15 @@ checkbox-group label {
|
|
|
1312
1312
|
position: absolute;
|
|
1313
1313
|
top: 0;
|
|
1314
1314
|
right: 0;
|
|
1315
|
-
padding: 0
|
|
1315
|
+
padding: 0 10upx;
|
|
1316
1316
|
background-color: #539DFA;
|
|
1317
1317
|
color: #FFFFFF;
|
|
1318
1318
|
}
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
1321
1321
|
.isCorrected {
|
|
1322
|
-
border-top:
|
|
1323
|
-
border-bottom:
|
|
1322
|
+
border-top: 2upx solid #ff0000;
|
|
1323
|
+
border-bottom: 2upx solid #ff0000;
|
|
1324
1324
|
}
|
|
1325
1325
|
|
|
1326
1326
|
.showFalse {
|
|
@@ -1339,8 +1339,8 @@ checkbox-group label {
|
|
|
1339
1339
|
&__label {
|
|
1340
1340
|
font-size: $uni-form-title-font-size;
|
|
1341
1341
|
color: #666;
|
|
1342
|
-
height:
|
|
1343
|
-
line-height:
|
|
1342
|
+
height: 70upx;
|
|
1343
|
+
line-height: 70upx;
|
|
1344
1344
|
// padding: 12upx 0 0 0;
|
|
1345
1345
|
display: inline-block;
|
|
1346
1346
|
padding-left: $uni-form-padding-left;
|
|
@@ -1348,13 +1348,13 @@ checkbox-group label {
|
|
|
1348
1348
|
&.showAsteriskRect::after {
|
|
1349
1349
|
content: '';
|
|
1350
1350
|
color: #FF3333;
|
|
1351
|
-
width:
|
|
1351
|
+
width: 30upx;
|
|
1352
1352
|
display: inline-block;
|
|
1353
|
-
padding-left:
|
|
1353
|
+
padding-left: 10upx;
|
|
1354
1354
|
}
|
|
1355
1355
|
|
|
1356
1356
|
&.isRequired::before {
|
|
1357
|
-
padding-right:
|
|
1357
|
+
padding-right: 10upx;
|
|
1358
1358
|
content: '*';
|
|
1359
1359
|
color: red;
|
|
1360
1360
|
}
|
|
@@ -1362,7 +1362,7 @@ checkbox-group label {
|
|
|
1362
1362
|
|
|
1363
1363
|
&__main {
|
|
1364
1364
|
flex: 1;
|
|
1365
|
-
min-height:
|
|
1365
|
+
min-height: 84upx;
|
|
1366
1366
|
display: flex;
|
|
1367
1367
|
align-items: center;
|
|
1368
1368
|
overflow: hidden;
|
|
@@ -1381,7 +1381,7 @@ checkbox-group label {
|
|
|
1381
1381
|
}
|
|
1382
1382
|
|
|
1383
1383
|
&__main textarea {
|
|
1384
|
-
padding-top:
|
|
1384
|
+
padding-top: 12upx;
|
|
1385
1385
|
}
|
|
1386
1386
|
|
|
1387
1387
|
&--left {
|
|
@@ -1405,8 +1405,8 @@ checkbox-group label {
|
|
|
1405
1405
|
}
|
|
1406
1406
|
|
|
1407
1407
|
.form-textarea-placeholder {
|
|
1408
|
-
padding-top:
|
|
1409
|
-
font-size:
|
|
1408
|
+
padding-top: 28upx;
|
|
1409
|
+
font-size: 34upx;
|
|
1410
1410
|
width: 100%;
|
|
1411
1411
|
}
|
|
1412
1412
|
|
|
@@ -1414,7 +1414,7 @@ checkbox-group label {
|
|
|
1414
1414
|
font-size: $uni-form-title-font-size;
|
|
1415
1415
|
// font-weight: bold;
|
|
1416
1416
|
// line-height: 40upx;
|
|
1417
|
-
padding:
|
|
1417
|
+
padding: 25upx 0 25upx 30rpx;
|
|
1418
1418
|
display: inline-block;
|
|
1419
1419
|
}
|
|
1420
1420
|
|
|
@@ -1423,11 +1423,11 @@ checkbox-group label {
|
|
|
1423
1423
|
}
|
|
1424
1424
|
|
|
1425
1425
|
.opencolor {
|
|
1426
|
-
width:
|
|
1427
|
-
height:
|
|
1428
|
-
padding:
|
|
1426
|
+
width: 50upx;
|
|
1427
|
+
height: 20upx;
|
|
1428
|
+
padding: 5upx;
|
|
1429
1429
|
background: #000007;
|
|
1430
|
-
margin-right:
|
|
1430
|
+
margin-right: 15upx;
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
1433
|
.with-fun {
|
|
@@ -1443,7 +1443,7 @@ checkbox-group label {
|
|
|
1443
1443
|
font-size: $uni-form-content-font-size;
|
|
1444
1444
|
color: #555555;
|
|
1445
1445
|
width: 100%;
|
|
1446
|
-
min-width:
|
|
1446
|
+
min-width: 100rpx;
|
|
1447
1447
|
height: 100%;
|
|
1448
1448
|
display: flex;
|
|
1449
1449
|
align-items: center;
|
|
@@ -1459,11 +1459,11 @@ checkbox-group label {
|
|
|
1459
1459
|
}
|
|
1460
1460
|
|
|
1461
1461
|
.uni-list .uni-list-cell:last-child::after {
|
|
1462
|
-
height:
|
|
1462
|
+
height: 0rpx;
|
|
1463
1463
|
}
|
|
1464
1464
|
|
|
1465
1465
|
.uni-list-cell-last.uni-list-cell::after {
|
|
1466
|
-
height:
|
|
1466
|
+
height: 0rpx;
|
|
1467
1467
|
}
|
|
1468
1468
|
|
|
1469
1469
|
/**checkbox radio*/
|
|
@@ -1472,7 +1472,7 @@ checkbox-group label {
|
|
|
1472
1472
|
.error-message {
|
|
1473
1473
|
color: red;
|
|
1474
1474
|
padding-left: $uni-form-padding-left;
|
|
1475
|
-
font-size:
|
|
1475
|
+
font-size: 24upx;
|
|
1476
1476
|
background-color: #efefef;
|
|
1477
1477
|
padding-top: $form-item-bottom-padding;
|
|
1478
1478
|
}
|
|
@@ -1492,13 +1492,13 @@ checkbox-group label {
|
|
|
1492
1492
|
top: 50%;
|
|
1493
1493
|
left: 0;
|
|
1494
1494
|
// height: 50vh;
|
|
1495
|
-
height:
|
|
1495
|
+
height: 400rpx;
|
|
1496
1496
|
transform: translateY(-50%);
|
|
1497
1497
|
background: #fff;
|
|
1498
1498
|
z-index: 999;
|
|
1499
1499
|
}
|
|
1500
1500
|
|
|
1501
1501
|
.option-time-icon {
|
|
1502
|
-
width:
|
|
1502
|
+
width: 150rpx;
|
|
1503
1503
|
}
|
|
1504
1504
|
</style>
|