@next-bricks/data-view 0.13.4 → 0.13.5
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/docs/app-wall-card-item.md +28 -0
- package/docs/app-wall-relation-line.md +13 -0
- package/docs/app-wall-system-card.md +57 -0
- package/docs/app-wall.md +1582 -0
- package/docs/battery-chart.md +76 -0
- package/docs/cabinet-app-layer.md +14 -0
- package/docs/cabinet-button.md +14 -0
- package/docs/cabinet-container.md +36 -0
- package/docs/cabinet-node.md +28 -0
- package/docs/complex-search.md +33 -0
- package/docs/dropdown-menu.md +20 -0
- package/docs/gauge-chart.md +26 -0
- package/docs/gear-background.md +15 -0
- package/docs/graph-layout-grid.md +97 -0
- package/docs/graph-node.md +14 -0
- package/docs/graph-text.md +13 -0
- package/docs/grid-background.md +21 -0
- package/docs/loading-panel.md +32 -0
- package/docs/modern-style-component-title.md +54 -0
- package/docs/modern-style-page-title.md +15 -0
- package/docs/modern-style-treemap.md +548 -0
- package/docs/particle-animation.md +20 -0
- package/docs/radar-chart.md +38 -0
- package/docs/tabs-drawer.md +71 -0
- package/package.json +2 -2
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
应用墙小卡片
|
|
2
|
+
|
|
3
|
+
## Examples
|
|
4
|
+
|
|
5
|
+
### Basic
|
|
6
|
+
|
|
7
|
+
```yaml preview
|
|
8
|
+
- brick: data-view.app-wall-card-item
|
|
9
|
+
properties:
|
|
10
|
+
cardTitle: pos
|
|
11
|
+
description: 店铺货管通
|
|
12
|
+
style:
|
|
13
|
+
width: 100px
|
|
14
|
+
height: 120px
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Status
|
|
18
|
+
|
|
19
|
+
```yaml preview
|
|
20
|
+
- brick: data-view.app-wall-card-item
|
|
21
|
+
properties:
|
|
22
|
+
status: warning
|
|
23
|
+
cardTitle: pos
|
|
24
|
+
description: 店铺货管通
|
|
25
|
+
style:
|
|
26
|
+
width: 100px
|
|
27
|
+
height: 120px
|
|
28
|
+
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
系统卡片
|
|
2
|
+
|
|
3
|
+
## Examples
|
|
4
|
+
|
|
5
|
+
### Basic
|
|
6
|
+
|
|
7
|
+
```yaml preview
|
|
8
|
+
- brick: data-view.app-wall-system-card
|
|
9
|
+
properties:
|
|
10
|
+
cardTitle: A系统
|
|
11
|
+
itemList:
|
|
12
|
+
- key: 实例ID
|
|
13
|
+
value: xxxx
|
|
14
|
+
- key: 系统英文缩写
|
|
15
|
+
value: system-fms
|
|
16
|
+
- key: 实例ID
|
|
17
|
+
value: xxx
|
|
18
|
+
- key: 系统英文名称
|
|
19
|
+
value: app-fms
|
|
20
|
+
- key: 系统中文名称
|
|
21
|
+
value: A财务系统
|
|
22
|
+
- key: 归属部门
|
|
23
|
+
value: 财务系统部
|
|
24
|
+
- key: 系统类型
|
|
25
|
+
value: 应用系统
|
|
26
|
+
- key: 系统描述
|
|
27
|
+
value: 1、使用场景概述:财务应收和应付结算
|
|
28
|
+
buttonName: 应用墙大屏
|
|
29
|
+
style:
|
|
30
|
+
background: rgba(40, 46, 58, 100%)
|
|
31
|
+
box-shadow: "0 0 12px 2px rgba(80, 255, 255, 0.45), inset 0 0 22px 0 #20242A"
|
|
32
|
+
border: "2px solid #50FFFF"
|
|
33
|
+
overflow: hidden
|
|
34
|
+
height: 400px
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Status
|
|
38
|
+
|
|
39
|
+
```yaml preview
|
|
40
|
+
- brick: data-view.app-wall-system-card
|
|
41
|
+
properties:
|
|
42
|
+
cardTitle: B系统
|
|
43
|
+
itemList:
|
|
44
|
+
- key: 实例ID
|
|
45
|
+
value: xxxx
|
|
46
|
+
- key: 系统英文缩写
|
|
47
|
+
value: system-fms-B
|
|
48
|
+
- key: 系统描述
|
|
49
|
+
value: 1、使用场景概述:财务应收和应付结算
|
|
50
|
+
buttonName: 应用墙大屏
|
|
51
|
+
status: warning
|
|
52
|
+
style:
|
|
53
|
+
background: "linear-gradient(180deg, #CC0066 0%, rgba(204, 0, 102, 0.2) 100%),#0F1117FF"
|
|
54
|
+
box-shadow: "0 0 12px 2px rgba(204, 0, 102, 0.4), inset 0 4px 10px 0 rgba(255, 255, 255, 0.65)"
|
|
55
|
+
overflow: hidden
|
|
56
|
+
height: 400px
|
|
57
|
+
```
|