@longhongguo/form-create-ant-design-vue 3.2.50 → 3.2.52
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/form-create.css +27 -14
- package/dist/form-create.esm.css +27 -14
- package/dist/form-create.esm.js +2 -2
- package/dist/form-create.esm.js.map +1 -1
- package/dist/form-create.js +2 -2
- package/dist/form-create.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CusSelect/index.vue +18 -1
- package/src/components/CusStoreSelect/index.vue +18 -5
- package/src/components/CusUserSelect/index.vue +20 -5
- package/src/core/maker.js +5 -0
- package/src/parsers/index.js +2 -0
- package/src/parsers/text.js +422 -0
- package/src/style/index.css +27 -14
package/src/style/index.css
CHANGED
|
@@ -317,18 +317,21 @@
|
|
|
317
317
|
margin-bottom: 1px !important;
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
._fc-table-form .ant-form-item-label,
|
|
320
|
+
._fc-table-form .ant-form-item-label,
|
|
321
|
+
._fc-table-form .van-field__label {
|
|
321
322
|
display: none !important;
|
|
322
323
|
}
|
|
323
324
|
|
|
324
|
-
._fc-tf-head-idx,
|
|
325
|
+
._fc-tf-head-idx,
|
|
326
|
+
._fc-tf-idx {
|
|
325
327
|
width: 40px;
|
|
326
328
|
min-width: 40px;
|
|
327
329
|
font-weight: 500;
|
|
328
330
|
text-align: center;
|
|
329
331
|
}
|
|
330
332
|
|
|
331
|
-
._fc-tf-edit,
|
|
333
|
+
._fc-tf-edit,
|
|
334
|
+
._fc-tf-btn {
|
|
332
335
|
width: 70px;
|
|
333
336
|
min-width: 70px;
|
|
334
337
|
text-align: center;
|
|
@@ -344,7 +347,8 @@
|
|
|
344
347
|
padding: 2px;
|
|
345
348
|
}
|
|
346
349
|
|
|
347
|
-
._fc-table-form._fc-disabled ._fc-tf-btn .fc-icon,
|
|
350
|
+
._fc-table-form._fc-disabled ._fc-tf-btn .fc-icon,
|
|
351
|
+
._fc-table-form._fc-disabled > .ant-btn {
|
|
348
352
|
cursor: not-allowed;
|
|
349
353
|
}
|
|
350
354
|
|
|
@@ -353,13 +357,13 @@
|
|
|
353
357
|
height: 100%;
|
|
354
358
|
overflow: hidden;
|
|
355
359
|
table-layout: fixed;
|
|
356
|
-
border: 1px solid #
|
|
360
|
+
border: 1px solid #ebeef5;
|
|
357
361
|
border-bottom: 0 none;
|
|
358
362
|
}
|
|
359
363
|
|
|
360
364
|
._fc-table-form ._fc-tf-table > thead > tr > th {
|
|
361
365
|
border: 0 none;
|
|
362
|
-
border-bottom: 1px solid #
|
|
366
|
+
border-bottom: 1px solid #ebeef5;
|
|
363
367
|
height: 40px;
|
|
364
368
|
font-weight: 500;
|
|
365
369
|
padding: 0 5px;
|
|
@@ -367,7 +371,7 @@
|
|
|
367
371
|
}
|
|
368
372
|
|
|
369
373
|
._fc-table-form ._fc-tf-table > thead > tr > th + th {
|
|
370
|
-
border-left: 1px solid #
|
|
374
|
+
border-left: 1px solid #ebeef5;
|
|
371
375
|
}
|
|
372
376
|
|
|
373
377
|
._fc-table-form tr {
|
|
@@ -388,14 +392,18 @@
|
|
|
388
392
|
overflow-wrap: break-word;
|
|
389
393
|
overflow: hidden;
|
|
390
394
|
border: 0 none;
|
|
391
|
-
border-bottom: 1px solid #
|
|
395
|
+
border-bottom: 1px solid #ebeef5;
|
|
392
396
|
}
|
|
393
397
|
|
|
394
398
|
._fc-table-form td + td {
|
|
395
|
-
border-left: 1px solid #
|
|
399
|
+
border-left: 1px solid #ebeef5;
|
|
396
400
|
}
|
|
397
401
|
|
|
398
|
-
._fc-tf-table .ant-input-number,
|
|
402
|
+
._fc-tf-table .ant-input-number,
|
|
403
|
+
._fc-tf-table .ant-select,
|
|
404
|
+
._fc-tf-table .ant-slider,
|
|
405
|
+
._fc-tf-table .ant-cascader,
|
|
406
|
+
._fc-tf-table .ant-picker {
|
|
399
407
|
width: 100%;
|
|
400
408
|
}
|
|
401
409
|
|
|
@@ -409,8 +417,8 @@
|
|
|
409
417
|
._fd-table-form {
|
|
410
418
|
min-height: 130px;
|
|
411
419
|
width: 100%;
|
|
412
|
-
border: 1px solid #
|
|
413
|
-
background: #
|
|
420
|
+
border: 1px solid #ececec;
|
|
421
|
+
background: #ffffff;
|
|
414
422
|
}
|
|
415
423
|
|
|
416
424
|
._fc-child-empty {
|
|
@@ -443,7 +451,8 @@
|
|
|
443
451
|
flex-shrink: 0;
|
|
444
452
|
}
|
|
445
453
|
|
|
446
|
-
._fd-tf-con .ant-form-item-label
|
|
454
|
+
._fd-tf-con .ant-form-item-label,
|
|
455
|
+
._fd-tf-con .van-field__label {
|
|
447
456
|
display: none !important;
|
|
448
457
|
}
|
|
449
458
|
|
|
@@ -471,7 +480,11 @@
|
|
|
471
480
|
display: none !important;
|
|
472
481
|
}
|
|
473
482
|
|
|
474
|
-
._fd-tf-con .ant-input-number,
|
|
483
|
+
._fd-tf-con .ant-input-number,
|
|
484
|
+
._fd-tf-con .ant-select,
|
|
485
|
+
._fd-tf-con .ant-slider,
|
|
486
|
+
._fd-tf-con .ant-cascader,
|
|
487
|
+
._fd-tf-con .ant-picker {
|
|
475
488
|
width: 100%;
|
|
476
489
|
}
|
|
477
490
|
|