inl-ui 0.0.13 → 0.0.15

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inl-ui",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "description": "工业 pc ui库",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/types/src/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "axios": "^0.21.1",
21
21
  "fabric": "^5.2.4",
22
22
  "fabric-guideline-plugin": "^0.0.11",
23
- "inl-card": "^0.0.62",
23
+ "inl-card": "^0.0.64",
24
24
  "mitt": "^3.0.0",
25
25
  "moment": "^2.29.1",
26
26
  "vitevuu": "^1.0.9",
@@ -587,7 +587,7 @@ export default defineComponent({
587
587
  />
588
588
  ) : (
589
589
  <div>
590
- {commodity.truckPlanAmount.toFixed(
590
+ {commodity.truckPlanAmount?.toFixed(
591
591
  precision
592
592
  )}
593
593
  </div>
@@ -596,14 +596,14 @@ export default defineComponent({
596
596
  )}
597
597
  <div class="flex1 borderRight flexC">
598
598
  {/* 铁运实际量(t) */}
599
- {commodity.railwayActualQuantity.toFixed(
599
+ {commodity.railwayActualQuantity?.toFixed(
600
600
  precision
601
601
  )}
602
602
  </div>
603
603
  {"truckActualQuantity" in commodity && (
604
604
  <div class="flex1 borderRight flexC">
605
605
  {/* 汽运实际量(t) */}
606
- {commodity.truckActualQuantity.toFixed(
606
+ {commodity.truckActualQuantity?.toFixed(
607
607
  precision
608
608
  )}
609
609
  </div>
@@ -479,7 +479,10 @@ export default defineComponent({
479
479
  ),
480
480
  }}
481
481
  >
482
- <div class="modal_content flex" style="max-height: 500px;">
482
+ <div
483
+ class="modal_content flex"
484
+ style="width: 1152px; max-height: 500px;"
485
+ >
483
486
  <div class="left">
484
487
  {/* <Input
485
488
  class="serach"