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.
Files changed (71) hide show
  1. package/package.json +29 -0
  2. package/src/api/org/list +96 -0
  3. package/src/api/org/type/list +18 -0
  4. package/src/api/own +3831 -0
  5. package/src/decorators/CurdKey/CurdApi.d.ts +221 -0
  6. package/src/decorators/CurdKey/RequestUtil.d.ts +55 -0
  7. package/src/decorators/CurdKey/index.d.ts +752 -0
  8. package/src/decorators/DeclareType.d.ts +35 -0
  9. package/src/decorators/Decorators.d.ts +5 -0
  10. package/src/decorators/FilterKey/index.d.ts +283 -0
  11. package/src/decorators/Loader/index.d.ts +179 -0
  12. package/src/decorators/NameKey/index.d.ts +68 -0
  13. package/src/decorators/PrimaryKey/index.d.ts +68 -0
  14. package/src/decorators/api.d.ts +21 -0
  15. package/src/decorators/decoratorStoreUtil.d.ts +68 -0
  16. package/src/decorators/index.d.ts +6 -0
  17. package/src/decorators/loadStore.d.ts +6 -0
  18. package/src/decorators/loadUtil.d.ts +25 -0
  19. package/src/decorators/util.d.ts +27 -0
  20. package/src/favicon.ico +0 -0
  21. package/src/index-decorators.d.ts +3 -0
  22. package/src/index.d.ts +10 -0
  23. package/src/index.es.js +10035 -0
  24. package/src/index.umd.js +2 -0
  25. package/src/pcViews/components/curd/CurdTableView.vue.d.ts +18 -0
  26. package/src/pcViews/components/curd/CurdView.vue.d.ts +22 -0
  27. package/src/pcViews/components/curd/CurdViewHandler.d.ts +1208 -0
  28. package/src/pcViews/components/curd/FilterView.vue.d.ts +19 -0
  29. package/src/pcViews/components/curd/FilterViewHandler.d.ts +6 -0
  30. package/src/pcViews/components/curd/index.d.ts +2 -0
  31. package/src/pcViews/components/forms/RadioButtonGroupView.vue.d.ts +19 -0
  32. package/src/pcViews/components/forms/SelectView.vue.d.ts +19 -0
  33. package/src/pcViews/components/forms/VModelView.vue.d.ts +20 -0
  34. package/src/pcViews/components/forms/index.d.ts +3 -0
  35. package/src/pcViews/components/index.d.ts +5 -0
  36. package/src/pcViews/components/layout/DataWrapperView.vue.d.ts +23 -0
  37. package/src/pcViews/components/layout/LayoutHeader.vue.d.ts +2 -0
  38. package/src/pcViews/components/layout/LayoutMainView.vue.d.ts +2 -0
  39. package/src/pcViews/components/layout/index.d.ts +2 -0
  40. package/src/pcViews/components/slots/VSlotView.vue.d.ts +20 -0
  41. package/src/pcViews/components/slots/index.d.ts +1 -0
  42. package/src/pcViews/components/utils.d.ts +33 -0
  43. package/src/pcViews/index.d.ts +1 -0
  44. package/src/utils/Date/ZDate.d.ts +557 -0
  45. package/src/utils/DeclareType.d.ts +39 -0
  46. package/src/utils/class/bind.d.ts +43 -0
  47. package/src/utils/class/combine.d.ts +109 -0
  48. package/src/utils/crypto/index.d.ts +44 -0
  49. package/src/utils/empty/index.d.ts +18 -0
  50. package/src/utils/httpRequest/HttpRequestError.d.ts +14 -0
  51. package/src/utils/httpRequest/httpRequestCreator.d.ts +61 -0
  52. package/src/utils/httpRequest/httpRequestUtil.d.ts +24 -0
  53. package/src/utils/httpRequest/index.d.ts +3 -0
  54. package/src/utils/index.d.ts +11 -0
  55. package/src/utils/math/toFixed.d.ts +11 -0
  56. package/src/utils/math/unitConvertor.d.ts +34 -0
  57. package/src/utils/mock/HttpResponse.d.ts +30 -0
  58. package/src/utils/mock/createDataTimes.d.ts +20 -0
  59. package/src/utils/mock/index.d.ts +2 -0
  60. package/src/utils/reduce/completeByDate.d.ts +51 -0
  61. package/src/utils/reduce/index.d.ts +9 -0
  62. package/src/utils/reduce/mappingBuilder.d.ts +69 -0
  63. package/src/utils/reduce/ratio.d.ts +104 -0
  64. package/src/utils/reduce/sort.d.ts +12 -0
  65. package/src/utils/reduce/sumByGroup.d.ts +53 -0
  66. package/src/utils/reduce/toGroup.d.ts +79 -0
  67. package/src/utils/reduce/tree.d.ts +570 -0
  68. package/src/utils/reduce/util.d.ts +14 -0
  69. package/src/utils/reduce/valueConvertor.d.ts +65 -0
  70. package/src/utils/reduce/verticalToHorizontal.d.ts +80 -0
  71. 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
+ }
@@ -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
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "code": 200,
3
+ "msg": "",
4
+ "data": [
5
+ {
6
+ "id": "1",
7
+ "name": "环境监测中心",
8
+ "icon": null,
9
+ "color": null
10
+ },
11
+ {
12
+ "id": "2",
13
+ "name": "运维公司",
14
+ "icon": null,
15
+ "color": null
16
+ }
17
+ ]
18
+ }