zzz-pc-view 0.0.1
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 +29 -0
- package/src/api/org/list +96 -0
- package/src/api/org/type/list +18 -0
- package/src/api/own +3831 -0
- package/src/decorators/CurdKey/CurdApi.d.ts +221 -0
- package/src/decorators/CurdKey/RequestUtil.d.ts +55 -0
- package/src/decorators/CurdKey/index.d.ts +752 -0
- package/src/decorators/DeclareType.d.ts +35 -0
- package/src/decorators/Decorators.d.ts +5 -0
- package/src/decorators/FilterKey/index.d.ts +283 -0
- package/src/decorators/Loader/index.d.ts +179 -0
- package/src/decorators/NameKey/index.d.ts +68 -0
- package/src/decorators/PrimaryKey/index.d.ts +68 -0
- package/src/decorators/api.d.ts +21 -0
- package/src/decorators/decoratorStoreUtil.d.ts +68 -0
- package/src/decorators/index.d.ts +6 -0
- package/src/decorators/loadStore.d.ts +6 -0
- package/src/decorators/loadUtil.d.ts +25 -0
- package/src/decorators/util.d.ts +27 -0
- package/src/favicon.ico +0 -0
- package/src/index-decorators.d.ts +3 -0
- package/src/index.d.ts +10 -0
- package/src/index.es.js +10035 -0
- package/src/index.umd.js +2 -0
- package/src/pcViews/components/curd/CurdTableView.vue.d.ts +18 -0
- package/src/pcViews/components/curd/CurdView.vue.d.ts +22 -0
- package/src/pcViews/components/curd/CurdViewHandler.d.ts +1208 -0
- package/src/pcViews/components/curd/FilterView.vue.d.ts +19 -0
- package/src/pcViews/components/curd/FilterViewHandler.d.ts +6 -0
- package/src/pcViews/components/curd/index.d.ts +2 -0
- package/src/pcViews/components/forms/RadioButtonGroupView.vue.d.ts +19 -0
- package/src/pcViews/components/forms/SelectView.vue.d.ts +19 -0
- package/src/pcViews/components/forms/VModelView.vue.d.ts +20 -0
- package/src/pcViews/components/forms/index.d.ts +3 -0
- package/src/pcViews/components/index.d.ts +5 -0
- package/src/pcViews/components/layout/DataWrapperView.vue.d.ts +23 -0
- package/src/pcViews/components/layout/LayoutHeader.vue.d.ts +2 -0
- package/src/pcViews/components/layout/LayoutMainView.vue.d.ts +2 -0
- package/src/pcViews/components/layout/index.d.ts +2 -0
- package/src/pcViews/components/slots/VSlotView.vue.d.ts +20 -0
- package/src/pcViews/components/slots/index.d.ts +1 -0
- package/src/pcViews/components/utils.d.ts +33 -0
- package/src/pcViews/index.d.ts +1 -0
- package/src/utils/Date/ZDate.d.ts +557 -0
- package/src/utils/DeclareType.d.ts +39 -0
- package/src/utils/class/bind.d.ts +43 -0
- package/src/utils/class/combine.d.ts +109 -0
- package/src/utils/crypto/index.d.ts +44 -0
- package/src/utils/empty/index.d.ts +18 -0
- package/src/utils/httpRequest/HttpRequestError.d.ts +14 -0
- package/src/utils/httpRequest/httpRequestCreator.d.ts +61 -0
- package/src/utils/httpRequest/httpRequestUtil.d.ts +24 -0
- package/src/utils/httpRequest/index.d.ts +3 -0
- package/src/utils/index.d.ts +11 -0
- package/src/utils/math/toFixed.d.ts +11 -0
- package/src/utils/math/unitConvertor.d.ts +34 -0
- package/src/utils/mock/HttpResponse.d.ts +30 -0
- package/src/utils/mock/createDataTimes.d.ts +20 -0
- package/src/utils/mock/index.d.ts +2 -0
- package/src/utils/reduce/completeByDate.d.ts +51 -0
- package/src/utils/reduce/index.d.ts +9 -0
- package/src/utils/reduce/mappingBuilder.d.ts +69 -0
- package/src/utils/reduce/ratio.d.ts +104 -0
- package/src/utils/reduce/sort.d.ts +12 -0
- package/src/utils/reduce/sumByGroup.d.ts +53 -0
- package/src/utils/reduce/toGroup.d.ts +79 -0
- package/src/utils/reduce/tree.d.ts +570 -0
- package/src/utils/reduce/util.d.ts +14 -0
- package/src/utils/reduce/valueConvertor.d.ts +65 -0
- package/src/utils/reduce/verticalToHorizontal.d.ts +80 -0
- package/src/zzz-frame.css +7 -0
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zzz-pc-view",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"main": "src/index.umd.js",
|
|
5
|
+
"module": "src/index.es.js",
|
|
6
|
+
"types": "src/index.d.ts",
|
|
7
|
+
"style": "src/zzz-frame.css",
|
|
8
|
+
"files": [
|
|
9
|
+
"src"
|
|
10
|
+
],
|
|
11
|
+
"directories": {
|
|
12
|
+
"list": "src"
|
|
13
|
+
},
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"vue": "^3.5.13",
|
|
16
|
+
"vue-router": "^4.4.5",
|
|
17
|
+
"pinia": "^2.2.6",
|
|
18
|
+
"axios": "^1.7.9",
|
|
19
|
+
"crypto-js": "^4.2.0",
|
|
20
|
+
"@types/crypto-js": "^4.2.2",
|
|
21
|
+
"qs": "^6.13.0",
|
|
22
|
+
"@types/qs": "^6.9.17",
|
|
23
|
+
"echarts": "^5.5.1",
|
|
24
|
+
"element-plus": "^2.9.1",
|
|
25
|
+
"color-hash": "^2.0.2",
|
|
26
|
+
"animate.css": "^4.1.1",
|
|
27
|
+
"mitt": "^3.0.1"
|
|
28
|
+
}
|
|
29
|
+
}
|
package/src/api/org/list
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"code": 200,
|
|
3
|
+
"msg": "",
|
|
4
|
+
"data": [
|
|
5
|
+
{
|
|
6
|
+
"id": "1",
|
|
7
|
+
"parentId": null,
|
|
8
|
+
"name": "墨而信息科技",
|
|
9
|
+
"typeId": null,
|
|
10
|
+
"directorId": null,
|
|
11
|
+
"state": 1,
|
|
12
|
+
"note": null
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "10000",
|
|
16
|
+
"parentId": null,
|
|
17
|
+
"name": "未命名组织",
|
|
18
|
+
"typeId": null,
|
|
19
|
+
"directorId": null,
|
|
20
|
+
"state": 1,
|
|
21
|
+
"note": null
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "18948352606661",
|
|
25
|
+
"parentId": "8",
|
|
26
|
+
"name": "Caiwuff11111",
|
|
27
|
+
"typeId": "1",
|
|
28
|
+
"directorId": null,
|
|
29
|
+
"state": 1,
|
|
30
|
+
"note": null
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "8",
|
|
34
|
+
"parentId": "1",
|
|
35
|
+
"name": "财务部",
|
|
36
|
+
"typeId": null,
|
|
37
|
+
"directorId": null,
|
|
38
|
+
"state": 1,
|
|
39
|
+
"note": null
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "15484030763589",
|
|
43
|
+
"parentId": null,
|
|
44
|
+
"name": "环境监测中心",
|
|
45
|
+
"typeId": "1",
|
|
46
|
+
"directorId": "15484043192005",
|
|
47
|
+
"state": 1,
|
|
48
|
+
"note": null
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "1574598482348261377",
|
|
52
|
+
"parentId": null,
|
|
53
|
+
"name": "上海贝瑟环保科技有限公司",
|
|
54
|
+
"typeId": "2",
|
|
55
|
+
"directorId": "16",
|
|
56
|
+
"state": 1,
|
|
57
|
+
"note": null
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "1593476813298688002",
|
|
61
|
+
"parentId": null,
|
|
62
|
+
"name": "环境监测站",
|
|
63
|
+
"typeId": "1",
|
|
64
|
+
"directorId": null,
|
|
65
|
+
"state": 1,
|
|
66
|
+
"note": null
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "1593476813298688003",
|
|
70
|
+
"parentId": null,
|
|
71
|
+
"name": "上海贝瑟环保科技有限公司3",
|
|
72
|
+
"typeId": "1",
|
|
73
|
+
"directorId": "14",
|
|
74
|
+
"state": 1,
|
|
75
|
+
"note": null
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "1731507103918764034",
|
|
79
|
+
"parentId": null,
|
|
80
|
+
"name": "上海贝瑟环保科技有限公司1",
|
|
81
|
+
"typeId": "2",
|
|
82
|
+
"directorId": null,
|
|
83
|
+
"state": 1,
|
|
84
|
+
"note": null
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "1731567617680093185",
|
|
88
|
+
"parentId": null,
|
|
89
|
+
"name": "上海贝瑟环保科技有限公司2",
|
|
90
|
+
"typeId": "2",
|
|
91
|
+
"directorId": null,
|
|
92
|
+
"state": 1,
|
|
93
|
+
"note": null
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
}
|