@appthen/cli 1.2.8 → 1.2.11

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 (122) hide show
  1. package/.gitignore +1 -0
  2. package/bin/main.js +45 -0
  3. package/dist/index.js +1277 -909
  4. package/package.json +1 -1
  5. package/tests/test-app/.appthen/shadow-space-100001-test-app-e99876b1.json +1406 -0
  6. package/tests/test-app/.appthen/shadow-space-unknown-user-test-app-e99876b1.json +1060 -0
  7. package/tests/test-app/.appthen/space-config.json +8 -0
  8. package/tests/test-app/docs/AI-Workflow.flow +112 -0
  9. package/tests/test-app/docs/Logic-1.flow +16 -0
  10. package/tests/test-app/docs/Logic.flow +16 -0
  11. package/tests/test-app/docs/Project-Blueprint-1.flow +119 -0
  12. package/tests/test-app/docs/Project-Blueprint.flow +119 -0
  13. package/tests/test-app/docs/README.md +3 -0
  14. package/tests/test-app/docs/claude.md +194 -0
  15. package/tests/test-app/docs/page_requirement_analysis.md +149 -0
  16. package/tests/test-app/docs//345/267/245/345/215/225/347/256/241/347/220/206/347/263/273/347/273/237/350/257/246/347/273/206/350/256/276/350/256/241.md +377 -0
  17. package/tests/test-app/src/apis/AddTodoPost.api.ts +42 -0
  18. package/tests/test-app/src/apis/DeleteTodoPost.api.ts +32 -0
  19. package/tests/test-app/src/apis/GetListPost.api.ts +38 -0
  20. package/tests/test-app/src/apis/TicketAttachmentUploadPost.api.ts +42 -0
  21. package/tests/test-app/src/apis/UpdateTodoPost.api.ts +46 -0
  22. package/tests/test-app/src/app.css +15 -0
  23. package/tests/test-app/src/cloud_functions/ticket|attachment|upload.node.ts +86 -0
  24. package/tests/test-app/src/cloud_functions/ticket|comment|add.node.ts +65 -0
  25. package/tests/test-app/src/cloud_functions/types|entity|Ticket.node.ts +88 -0
  26. package/tests/test-app/src/cloud_functions/types|entity|TicketAttachment.node.ts +70 -0
  27. package/tests/test-app/src/cloud_functions/types|entity|TicketCategory.node.ts +56 -0
  28. package/tests/test-app/src/cloud_functions/types|entity|TicketComment.node.ts +62 -0
  29. package/tests/test-app/src/cloud_functions/types|entity|TicketHistory.node.ts +74 -0
  30. package/tests/test-app/src/cloud_functions/types|entity|TicketPriority.node.ts +68 -0
  31. package/tests/test-app/src/cloud_functions/types|entity|TicketStatus.node.ts +63 -0
  32. package/tests/test-app/src/cloud_functions/types|models|CreateTicketParams.node.ts +20 -0
  33. package/tests/test-app/src/cloud_functions/types|models|TicketListParams.node.ts +30 -0
  34. package/tests/test-app/src/cloud_functions/types|models|UpdateTicketParams.node.ts +22 -0
  35. package/tests/test-app/src/components/Button.js +11 -0
  36. package/tests/test-app/src/components/MouduleDemoNzp.tsx +40 -0
  37. package/tests/test-app/src/components/Timeline.tsx +145 -0
  38. package/tests/test-app/src/index.ts +2 -0
  39. package/tests/test-app/src/modules/work_order_module/apis/TicketCommentAddPost.api.ts +48 -0
  40. package/tests/test-app/src/modules/work_order_module/apis/TicketCreatePost.api.ts +52 -0
  41. package/tests/test-app/src/modules/work_order_module/apis/TicketDeleteDelete.api.ts +39 -0
  42. package/tests/test-app/src/modules/work_order_module/apis/TicketDetailGet.api.ts +39 -0
  43. package/tests/test-app/src/modules/work_order_module/apis/TicketListGet.api.ts +61 -0
  44. package/tests/test-app/src/modules/work_order_module/apis/TicketUpdatePut.api.ts +57 -0
  45. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorFaultListGet.ts +76 -0
  46. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorListGet.ts +76 -0
  47. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorOperationRecordsGet.ts +284 -0
  48. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorStatisticsGet.ts +96 -0
  49. package/tests/test-app/src/modules/work_order_module/cloud_function/category|list.node.ts +40 -0
  50. package/tests/test-app/src/modules/work_order_module/cloud_function/priority|list.node.ts +26 -0
  51. package/tests/test-app/src/modules/work_order_module/cloud_function/status|list.node.ts +26 -0
  52. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|create.node.ts +54 -0
  53. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|delete.node.ts +55 -0
  54. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|detail.node.ts +65 -0
  55. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|list.node.ts +85 -0
  56. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|update.node.ts +73 -0
  57. package/tests/test-app/src/modules/work_order_module/data_model/Ticket.m.ts +85 -0
  58. package/tests/test-app/src/modules/work_order_module/data_model/TicketCategory.m.ts +53 -0
  59. package/tests/test-app/src/modules/work_order_module/data_model/TicketStatus.m.ts +60 -0
  60. package/tests/test-app/src/modules/work_order_module//345/267/245/345/215/225/347/263/273/347/273/237/344/272/247/345/223/201/350/256/276/350/256/241/346/226/207/346/241/243.md +301 -0
  61. package/tests/test-app/src/modules/work_order_module//345/267/245/345/215/225/347/263/273/347/273/237/345/274/200/345/217/221/344/273/273/345/212/241/345/210/206/345/267/245/346/226/207/346/241/243.md +345 -0
  62. package/tests/test-app/src/pages/SLAManagement.tsx +668 -0
  63. package/tests/test-app/src/pages/TicketCreate.tsx +27 -0
  64. package/tests/test-app/src/pages/TicketDetail.tsx +27 -0
  65. package/tests/test-app/src/pages/TicketList.tsx +27 -0
  66. package/tests/test-app/src/pages/TicketManagementPage.tsx +1238 -0
  67. package/tests/test-app/src/pages/VisualAIIDEUpgrade.tsx +245 -0
  68. package/tests/test-app/src/pages/appthen_guide/ComponentTreeUnderstanding.tsx +26 -0
  69. package/tests/test-app/src/pages/appthen_guide/DataBindingLearning.tsx +26 -0
  70. package/tests/test-app/src/pages/back-end/adminRootLayout.tsx +155 -0
  71. package/tests/test-app/src/pages/back-end/adminRootLayout10.tsx +157 -0
  72. package/tests/test-app/src/pages/back-end/adminRootLayout2.tsx +156 -0
  73. package/tests/test-app/src/pages/back-end/adminRootLayout3.tsx +156 -0
  74. package/tests/test-app/src/pages/back-end/adminRootLayout4.tsx +157 -0
  75. package/tests/test-app/src/pages/back-end/adminRootLayout5.tsx +157 -0
  76. package/tests/test-app/src/pages/back-end/adminRootLayout6.tsx +157 -0
  77. package/tests/test-app/src/pages/back-end/adminRootLayout7.tsx +157 -0
  78. package/tests/test-app/src/pages/back-end/adminRootLayout8.tsx +157 -0
  79. package/tests/test-app/src/pages/back-end/adminRootLayout9.tsx +157 -0
  80. package/tests/test-app/src/pages/back-end/backgroundManagementSystem.css +5 -0
  81. package/tests/test-app/src/pages/back-end/backgroundManagementSystem.tsx +1745 -0
  82. package/tests/test-app/src/pages/component/WorkOrderCard.tsx +140 -0
  83. package/tests/test-app/src/pages/cover.tsx +42 -0
  84. package/tests/test-app/src/pages/data_dashboard/blueBrightGreenTechnologyWind.css +181 -0
  85. package/tests/test-app/src/pages/data_dashboard/blueBrightGreenTechnologyWind.tsx +225 -0
  86. package/tests/test-app/src/pages/data_dashboard/blueLargeScreen.css +181 -0
  87. package/tests/test-app/src/pages/data_dashboard/blueLargeScreen.tsx +138 -0
  88. package/tests/test-app/src/pages/data_dashboard/component_library/BlueBrightGreenBorder.tsx +47 -0
  89. package/tests/test-app/src/pages/data_dashboard/component_library/FullScreenContainer.tsx +133 -0
  90. package/tests/test-app/src/pages/description_of_mock_interface.md +32 -0
  91. package/tests/test-app/src/pages/digitalLargeScreen.css +181 -0
  92. package/tests/test-app/src/pages/digitalLargeScreen.tsx +1417 -0
  93. package/tests/test-app/src/pages/mobile_terminal/PersonalCenter.css +3 -0
  94. package/tests/test-app/src/pages/mobile_terminal/PersonalCenter.tsx +362 -0
  95. package/tests/test-app/src/pages/mobile_terminal/WorkOrderHomepage.tsx +337 -0
  96. package/tests/test-app/src/pages/mobile_terminal/newWorkOrder.tsx +224 -0
  97. package/tests/test-app/src/pages/mobile_terminal/tabbar.tsx +67 -0
  98. package/tests/test-app/src/pages/mobile_terminal/uiHandsOnPractice.tsx +638 -0
  99. package/tests/test-app/src/pages/mobile_terminal/workOrderDetails.tsx +346 -0
  100. package/tests/test-app/src/pages/mobile_terminal/workOrderPage.tsx +345 -0
  101. package/tests/test-app/src/pages/testPage.css +3 -0
  102. package/tests/test-app/src/pages/testPage.tsx +158 -0
  103. package/tests/test-app/src/pages/web_version/website.css +205 -0
  104. package/tests/test-app/src/pages/web_version/website.tsx +1066 -0
  105. package/tests/test-app/src/pages//345/276/205/345/212/236.apidoc.json +336 -0
  106. package/tests/test-app/src/project.json +1120 -0
  107. package/tests/test-app/src/store/global.store.ts +10 -0
  108. package/tests/test-app/src/types/CreateTicketParams.m.ts +20 -0
  109. package/tests/test-app/src/types/SLAPolicy.ts +50 -0
  110. package/tests/test-app/src/types/Ticket.ts +68 -0
  111. package/tests/test-app/src/types/TicketAttachment.m.ts +67 -0
  112. package/tests/test-app/src/types/TicketComment.m.ts +59 -0
  113. package/tests/test-app/src/types/TicketEvaluation.ts +44 -0
  114. package/tests/test-app/src/types/TicketHistory.m.ts +71 -0
  115. package/tests/test-app/src/types/TicketListParams.m.ts +30 -0
  116. package/tests/test-app/src/types/TicketPriority.m.ts +65 -0
  117. package/tests/test-app/src/types/TicketRecord.ts +47 -0
  118. package/tests/test-app/src/types/TrainDoor.ts +284 -0
  119. package/tests/test-app/src/types/UpdateTicketParams.m.ts +22 -0
  120. package/tests/test-app/src/utils/__afterRequest.util.ts +3 -0
  121. package/tests/test-app/src/utils/__beforeRequest.util.ts +10 -0
  122. package/tests/test-app/src/utils/testGlobalAction.util.ts +7 -0
@@ -0,0 +1,1745 @@
1
+ /**
2
+ * 首页
3
+ * @type Page
4
+ * @screen 1400w #f5f5f5
5
+ * @frames web
6
+ */
7
+ import React from 'react';
8
+ import { AtIcon, Image, Page, Text, View } from '@appthen/react';
9
+ import { Button, Calendar, Card, Col, Icon, Progress, Row, Select, Typography } from '@appthen/antd';
10
+ import { ECharts } from '@appthen/echarts';
11
+ import { ProPopconfirm, ProTable } from '@appthen/antd-pro';
12
+ import './backgroundManagementSystem.css';
13
+
14
+ class IProps {}
15
+
16
+ /*
17
+ * 数据与接口请求定义
18
+ */
19
+ class IState {}
20
+
21
+ class Document extends React.Component<IProps, IState> {
22
+ state = {};
23
+
24
+ render() {
25
+ return (
26
+ <Page className="pt-[20px] pr-[20px] pb-[20px] pl-[20px]">
27
+ <Row align="top" justify="start" wrap={true} gutter={[20, 20]}>
28
+ <Col span={24} order={0}>
29
+ <View
30
+ style={{
31
+ height: '188px',
32
+ backgroundImage:
33
+ 'url(https://cdn.appthen.com/Fp_s_XBf9C1PhnPplQWi0Udx8cw4)',
34
+ backgroundSize: 'cover',
35
+ backgroundPosition: 'center center',
36
+ backgroundRepeat: 'no-repeat',
37
+ paddingLeft: '54px',
38
+ display: 'flex',
39
+ alignItems: 'center',
40
+ }}
41
+ >
42
+ <View className="flex gap-6 flex-row">
43
+ <Image
44
+ src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
45
+ height={120}
46
+ width={120}
47
+ remote={false}
48
+ fit={false}
49
+ className="rounded-[50%] w-[80px] h-[80px]"
50
+ />
51
+ <View className="flex flex-col justify-between">
52
+ <Typography.Text
53
+ code={false}
54
+ delete={false}
55
+ disabled={false}
56
+ mark={false}
57
+ keyboard={false}
58
+ underline={false}
59
+ strong={false}
60
+ className="text-2xl font-medium tracking-normal [lineHeight:28px] text-[rgba(255, 255, 255, 1)]"
61
+ >
62
+ 下午好,欢迎登录
63
+ </Typography.Text>
64
+ <Typography.Text
65
+ code={false}
66
+ delete={false}
67
+ disabled={false}
68
+ mark={false}
69
+ keyboard={false}
70
+ underline={false}
71
+ strong={false}
72
+ ellipsis={false}
73
+ className="text-sm font-normal tracking-normal [lineHeight:20px] text-[rgba(255, 255, 255, 0.6)] w-[281px]"
74
+ >
75
+ 一站式智能营销解决方案,帮助你、高效管理客户、快速提升业绩
76
+ </Typography.Text>
77
+ </View>
78
+ </View>
79
+ </View>
80
+ </Col>
81
+ <Col span={24} order={0}>
82
+ <Card
83
+ title="今日核心指标11111"
84
+ actions={[]}
85
+ bordered={false}
86
+ extra={
87
+ <Select
88
+ options={[
89
+ { label: '2021-08-01', value: 'A' },
90
+ { label: '2021-08-02', value: 'B' },
91
+ { label: '2021-08-03', value: 'C' },
92
+ ]}
93
+ defaultValue={[]}
94
+ allowClear={false}
95
+ autoFocus={false}
96
+ defaultActiveFirstOption={true}
97
+ disabled={false}
98
+ labelInValue={false}
99
+ placeholder="2021-08-01"
100
+ showSearch={false}
101
+ loading={false}
102
+ bordered={false}
103
+ optionFilterProp="value"
104
+ tokenSeparators={[]}
105
+ maxTagCount={0}
106
+ maxTagTextLength={0}
107
+ className="w-full"
108
+ />
109
+ }
110
+ hoverable={false}
111
+ loading={false}
112
+ size="default"
113
+ type="default"
114
+ headStyle={{
115
+ border: 'none',
116
+ fontSize: '16px',
117
+ fontWeight: 600,
118
+ color: '#202020',
119
+ paddingTop: '16px',
120
+ }}
121
+ _unsafe_MixedSetter_extra_select="SlotSetter"
122
+ className="shadow-none"
123
+ >
124
+ <View className="flex flex-row gap-6">
125
+ <View className="flex flex-row justify-between w-[20%]">
126
+ <View className="flex flex-col flex-shrink-0">
127
+ <Typography.Text
128
+ code={false}
129
+ delete={false}
130
+ disabled={false}
131
+ mark={false}
132
+ keyboard={false}
133
+ underline={false}
134
+ strong={false}
135
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[2px]"
136
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
137
+ >
138
+ 今日 UV
139
+ </Typography.Text>
140
+ <Typography.Text
141
+ code={false}
142
+ delete={false}
143
+ disabled={false}
144
+ mark={false}
145
+ keyboard={false}
146
+ underline={false}
147
+ strong={false}
148
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)] mb-[11px]"
149
+ >
150
+ 67
151
+ </Typography.Text>
152
+ <View className="flex flex-row items-center">
153
+ <Typography.Text
154
+ code={false}
155
+ delete={false}
156
+ disabled={false}
157
+ mark={false}
158
+ keyboard={false}
159
+ underline={false}
160
+ strong={false}
161
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)] mr-[8px]"
162
+ >
163
+ 同比上周
164
+ </Typography.Text>
165
+ <AtIcon
166
+ value="clock"
167
+ size={16}
168
+ color="#5be41e"
169
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 8.73297119140625 4.6000001430511475&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M0.801605 0.8L3.80161 3.8L6.80161 0.8L0.801605 0.8Z&#34; stroke=&#34;currentColor&#34; stroke-width=&#34;1.5999999999999999&#34; stroke-linejoin=&#34;round&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
170
+ className="mr-[2px]"
171
+ />
172
+ <Typography.Text
173
+ code={false}
174
+ delete={false}
175
+ disabled={false}
176
+ mark={false}
177
+ keyboard={false}
178
+ underline={false}
179
+ strong={false}
180
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)]"
181
+ >
182
+ 0.9%
183
+ </Typography.Text>
184
+ </View>
185
+ </View>
186
+ <View className="w-[1px] h-[92px] [opacity:0.06] bg-[rgba(0, 0, 0, 1)]" />
187
+ </View>
188
+ <View className="flex flex-row justify-between w-[20%]">
189
+ <View className="flex flex-col flex-shrink-0">
190
+ <Typography.Text
191
+ code={false}
192
+ delete={false}
193
+ disabled={false}
194
+ mark={false}
195
+ keyboard={false}
196
+ underline={false}
197
+ strong={false}
198
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[2px]"
199
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
200
+ >
201
+ 昨日 UV
202
+ </Typography.Text>
203
+ <Typography.Text
204
+ code={false}
205
+ delete={false}
206
+ disabled={false}
207
+ mark={false}
208
+ keyboard={false}
209
+ underline={false}
210
+ strong={false}
211
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)] mb-[11px]"
212
+ >
213
+ 569
214
+ </Typography.Text>
215
+ <View className="flex flex-row items-center">
216
+ <Typography.Text
217
+ code={false}
218
+ delete={false}
219
+ disabled={false}
220
+ mark={false}
221
+ keyboard={false}
222
+ underline={false}
223
+ strong={false}
224
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)] mr-[8px]"
225
+ >
226
+ 同比上周
227
+ </Typography.Text>
228
+ <AtIcon
229
+ value="clock"
230
+ size={16}
231
+ color="#e32727"
232
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 8.277473449707031 4.333333373069763&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M3.668 0.666667L0.667999 3.66667L6.668 3.66667L3.668 0.666667Z&#34; stroke=&#34;currentColor&#34; stroke-width=&#34;1.3333333333333333&#34; stroke-linejoin=&#34;round&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
233
+ className="mr-[2px]"
234
+ />
235
+ <Typography.Text
236
+ code={false}
237
+ delete={false}
238
+ disabled={false}
239
+ mark={false}
240
+ keyboard={false}
241
+ underline={false}
242
+ strong={false}
243
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)]"
244
+ >
245
+ 0.9%
246
+ </Typography.Text>
247
+ </View>
248
+ </View>
249
+ <View className="w-[1px] h-[92px] [opacity:0.06] bg-[rgba(0, 0, 0, 1)]" />
250
+ </View>
251
+ <View className="flex flex-row justify-between w-[20%]">
252
+ <View className="flex flex-col flex-shrink-0">
253
+ <Typography.Text
254
+ code={false}
255
+ delete={false}
256
+ disabled={false}
257
+ mark={false}
258
+ keyboard={false}
259
+ underline={false}
260
+ strong={false}
261
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[2px]"
262
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
263
+ >
264
+ 新用户
265
+ </Typography.Text>
266
+ <Typography.Text
267
+ code={false}
268
+ delete={false}
269
+ disabled={false}
270
+ mark={false}
271
+ keyboard={false}
272
+ underline={false}
273
+ strong={false}
274
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)] mb-[11px]"
275
+ >
276
+ 45
277
+ </Typography.Text>
278
+ <View className="flex flex-row items-center">
279
+ <Typography.Text
280
+ code={false}
281
+ delete={false}
282
+ disabled={false}
283
+ mark={false}
284
+ keyboard={false}
285
+ underline={false}
286
+ strong={false}
287
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)] mr-[8px]"
288
+ >
289
+ 同比上周
290
+ </Typography.Text>
291
+ <AtIcon
292
+ value="clock"
293
+ size={16}
294
+ color="#5be41e"
295
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 8.73297119140625 4.6000001430511475&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M0.801605 0.8L3.80161 3.8L6.80161 0.8L0.801605 0.8Z&#34; stroke=&#34;currentColor&#34; stroke-width=&#34;1.5999999999999999&#34; stroke-linejoin=&#34;round&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
296
+ className="mr-[2px]"
297
+ />
298
+ <Typography.Text
299
+ code={false}
300
+ delete={false}
301
+ disabled={false}
302
+ mark={false}
303
+ keyboard={false}
304
+ underline={false}
305
+ strong={false}
306
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)]"
307
+ >
308
+ 0.9%
309
+ </Typography.Text>
310
+ </View>
311
+ </View>
312
+ <View className="w-[1px] h-[92px] [opacity:0.06] bg-[rgba(0, 0, 0, 1)]" />
313
+ </View>
314
+ <View className="flex flex-row justify-between w-[20%]">
315
+ <View className="flex flex-col flex-shrink-0">
316
+ <Typography.Text
317
+ code={false}
318
+ delete={false}
319
+ disabled={false}
320
+ mark={false}
321
+ keyboard={false}
322
+ underline={false}
323
+ strong={false}
324
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[2px]"
325
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
326
+ >
327
+ 近 7 日 UV
328
+ </Typography.Text>
329
+ <Typography.Text
330
+ code={false}
331
+ delete={false}
332
+ disabled={false}
333
+ mark={false}
334
+ keyboard={false}
335
+ underline={false}
336
+ strong={false}
337
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)] mb-[11px]"
338
+ >
339
+ 366
340
+ </Typography.Text>
341
+ </View>
342
+ <View className="w-[1px] h-[92px] [opacity:0.06] bg-[rgba(0, 0, 0, 1)]" />
343
+ </View>
344
+ <View className="flex flex-row justify-between w-[20%]">
345
+ <View className="flex flex-col flex-shrink-0">
346
+ <Typography.Text
347
+ code={false}
348
+ delete={false}
349
+ disabled={false}
350
+ mark={false}
351
+ keyboard={false}
352
+ underline={false}
353
+ strong={false}
354
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[2px]"
355
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
356
+ >
357
+ 近 30 日 UV
358
+ </Typography.Text>
359
+ <Typography.Text
360
+ code={false}
361
+ delete={false}
362
+ disabled={false}
363
+ mark={false}
364
+ keyboard={false}
365
+ underline={false}
366
+ strong={false}
367
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)] mb-[11px]"
368
+ >
369
+ 5639
370
+ </Typography.Text>
371
+ </View>
372
+ </View>
373
+ </View>
374
+ </Card>
375
+ </Col>
376
+ <Col span={24} order={0}>
377
+ <Card
378
+ title="今日核心指标"
379
+ actions={[]}
380
+ bordered={false}
381
+ extra={
382
+ <Select
383
+ options={[
384
+ { label: '2021-08-01', value: 'A' },
385
+ { label: '2021-08-02', value: 'B' },
386
+ { label: '2021-08-03', value: 'C' },
387
+ ]}
388
+ defaultValue={[]}
389
+ allowClear={false}
390
+ autoFocus={false}
391
+ defaultActiveFirstOption={true}
392
+ disabled={false}
393
+ labelInValue={false}
394
+ placeholder="2021-08-01"
395
+ showSearch={false}
396
+ loading={false}
397
+ bordered={false}
398
+ optionFilterProp="value"
399
+ tokenSeparators={[]}
400
+ maxTagCount={0}
401
+ maxTagTextLength={0}
402
+ className="w-full"
403
+ />
404
+ }
405
+ hoverable={false}
406
+ loading={false}
407
+ size="default"
408
+ type="default"
409
+ headStyle={{
410
+ border: 'none',
411
+ fontSize: '16px',
412
+ fontWeight: 600,
413
+ color: '#202020',
414
+ paddingTop: '16px',
415
+ display: 'none',
416
+ }}
417
+ _unsafe_MixedSetter_extra_select="SlotSetter"
418
+ className="shadow-none"
419
+ >
420
+ <View className="flex flex-row gap-8">
421
+ <View className="flex flex-row justify-between w-[30%]">
422
+ <View className="flex flex-col flex-shrink-0">
423
+ <Typography.Text
424
+ code={false}
425
+ delete={false}
426
+ disabled={false}
427
+ mark={false}
428
+ keyboard={false}
429
+ underline={false}
430
+ strong={false}
431
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)]"
432
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
433
+ >
434
+ 总流量(人次)
435
+ </Typography.Text>
436
+ <Typography.Text
437
+ code={false}
438
+ delete={false}
439
+ disabled={false}
440
+ mark={false}
441
+ keyboard={false}
442
+ underline={false}
443
+ strong={false}
444
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)]"
445
+ >
446
+ 601,986,875
447
+ </Typography.Text>
448
+ </View>
449
+ <View className="w-[1px] h-[92px] [opacity:0.06] bg-[rgba(0, 0, 0, 1)]" />
450
+ </View>
451
+ <View className="flex-1 flex flex-row gap-12">
452
+ <View className="flex flex-row gap-4 w-[33%]">
453
+ <View className="h-[64px] w-[64px]">
454
+ <Progress
455
+ percent={20}
456
+ status="active"
457
+ type="circle"
458
+ showInfo={false}
459
+ strokeWidth={10}
460
+ strokeColor="#6fa1ff"
461
+ trailColor="#f5f5f5"
462
+ steps={0}
463
+ gapDegree={0}
464
+ gapPosition="top"
465
+ className="h-[64px] flex w-[64px]"
466
+ />
467
+ </View>
468
+ <View className="flex flex-col">
469
+ <Typography.Text
470
+ code={false}
471
+ delete={false}
472
+ disabled={false}
473
+ mark={false}
474
+ keyboard={false}
475
+ underline={false}
476
+ strong={false}
477
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[6px]"
478
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
479
+ >
480
+ 付费流量
481
+ </Typography.Text>
482
+ <Typography.Text
483
+ code={false}
484
+ delete={false}
485
+ disabled={false}
486
+ mark={false}
487
+ keyboard={false}
488
+ underline={false}
489
+ strong={false}
490
+ className="text-xl font-normal tracking-normal [lineHeight:28px] text-[rgba(0, 0, 0, 1)] mb-[4px]"
491
+ >
492
+ 370,221,928
493
+ </Typography.Text>
494
+ <Typography.Text
495
+ code={false}
496
+ delete={false}
497
+ disabled={false}
498
+ mark={false}
499
+ keyboard={false}
500
+ underline={false}
501
+ strong={false}
502
+ className="BKzrX8CSn0 text-xs font-normal tracking-normal [lineHeight:20px] text-[rgba(0, 0, 0, 0.4)]"
503
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
504
+ >
505
+ 占比 61.5%
506
+ </Typography.Text>
507
+ </View>
508
+ </View>
509
+ <View className="flex flex-row gap-4 w-[33%]">
510
+ <View className="h-[64px] w-[64px]">
511
+ <Progress
512
+ percent={20}
513
+ status="active"
514
+ type="circle"
515
+ showInfo={false}
516
+ strokeWidth={10}
517
+ strokeColor="#98e38a"
518
+ trailColor="#f5f5f5"
519
+ steps={0}
520
+ gapDegree={0}
521
+ gapPosition="top"
522
+ className="h-[64px] flex w-[64px]"
523
+ />
524
+ </View>
525
+ <View className="flex flex-col">
526
+ <Typography.Text
527
+ code={false}
528
+ delete={false}
529
+ disabled={false}
530
+ mark={false}
531
+ keyboard={false}
532
+ underline={false}
533
+ strong={false}
534
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[6px]"
535
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
536
+ >
537
+ 免费流量
538
+ </Typography.Text>
539
+ <Typography.Text
540
+ code={false}
541
+ delete={false}
542
+ disabled={false}
543
+ mark={false}
544
+ keyboard={false}
545
+ underline={false}
546
+ strong={false}
547
+ className="text-xl font-normal tracking-normal [lineHeight:28px] text-[rgba(0, 0, 0, 1)] mb-[4px]"
548
+ >
549
+ 180,596,062
550
+ </Typography.Text>
551
+ <Typography.Text
552
+ code={false}
553
+ delete={false}
554
+ disabled={false}
555
+ mark={false}
556
+ keyboard={false}
557
+ underline={false}
558
+ strong={false}
559
+ className="BKzrX8CSn0 text-xs font-normal tracking-normal [lineHeight:20px] text-[rgba(0, 0, 0, 0.4)]"
560
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
561
+ >
562
+ 占比 30%
563
+ </Typography.Text>
564
+ </View>
565
+ </View>
566
+ <View className="flex flex-row gap-4 w-[33%]">
567
+ <View className="h-[64px] w-[64px]">
568
+ <Progress
569
+ percent={20}
570
+ status="active"
571
+ type="circle"
572
+ showInfo={false}
573
+ strokeWidth={10}
574
+ strokeColor="#5d7092"
575
+ trailColor="#f5f5f5"
576
+ steps={0}
577
+ gapDegree={0}
578
+ gapPosition="top"
579
+ className="h-[64px] flex w-[64px]"
580
+ />
581
+ </View>
582
+ <View className="flex flex-col">
583
+ <Typography.Text
584
+ code={false}
585
+ delete={false}
586
+ disabled={false}
587
+ mark={false}
588
+ keyboard={false}
589
+ underline={false}
590
+ strong={false}
591
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[6px]"
592
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
593
+ >
594
+ 其他流量
595
+ </Typography.Text>
596
+ <Typography.Text
597
+ code={false}
598
+ delete={false}
599
+ disabled={false}
600
+ mark={false}
601
+ keyboard={false}
602
+ underline={false}
603
+ strong={false}
604
+ className="text-xl font-normal tracking-normal [lineHeight:28px] text-[rgba(0, 0, 0, 1)] mb-[4px]"
605
+ >
606
+ 51,168,884
607
+ </Typography.Text>
608
+ <Typography.Text
609
+ code={false}
610
+ delete={false}
611
+ disabled={false}
612
+ mark={false}
613
+ keyboard={false}
614
+ underline={false}
615
+ strong={false}
616
+ className="BKzrX8CSn0 text-xs font-normal tracking-normal [lineHeight:20px] text-[rgba(0, 0, 0, 0.4)]"
617
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
618
+ >
619
+ 占比 8.5%
620
+ </Typography.Text>
621
+ </View>
622
+ </View>
623
+ </View>
624
+ </View>
625
+ </Card>
626
+ </Col>
627
+ <Col span={8} order={0}>
628
+ <Card
629
+ title="月数据趋势"
630
+ actions={[]}
631
+ bordered={false}
632
+ extra={
633
+ <AtIcon
634
+ value="clock"
635
+ size={23}
636
+ color="rgba(102,102,102,0.61)"
637
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 18 3&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M1.5 3C2.325 3 3 2.325 3 1.5C3 0.675 2.325 0 1.5 0C0.675 0 0 0.675 0 1.5C0 2.325 0.675 3 1.5 3ZM10.5 1.5C10.5 2.325 9.825 3 9 3C8.175 3 7.5 2.325 7.5 1.5C7.5 0.675 8.175 0 9 0C9.825 0 10.5 0.675 10.5 1.5ZM16.5 3C17.325 3 18 2.325 18 1.5C18 0.675 17.325 0 16.5 0C15.675 0 15 0.675 15 1.5C15 2.325 15.675 3 16.5 3Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
638
+ />
639
+ }
640
+ hoverable={false}
641
+ loading={false}
642
+ size="default"
643
+ type="default"
644
+ headStyle={{
645
+ border: 'none',
646
+ fontSize: '16px',
647
+ fontWeight: 600,
648
+ color: '#202020',
649
+ paddingTop: '16px',
650
+ }}
651
+ _unsafe_MixedSetter_extra_select="SlotSetter"
652
+ className="shadow-none"
653
+ >
654
+ <View>
655
+ <View className="flex flex-col flex-shrink-0 mb-[22px]">
656
+ <Typography.Text
657
+ code={false}
658
+ delete={false}
659
+ disabled={false}
660
+ mark={false}
661
+ keyboard={false}
662
+ underline={false}
663
+ strong={false}
664
+ className="BKzrX8CSn0 text-[rgba(94, 94, 94, 1)] mb-[2px] text-xs"
665
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
666
+ >
667
+ 支付成功率
668
+ </Typography.Text>
669
+ <Typography.Text
670
+ code={false}
671
+ delete={false}
672
+ disabled={false}
673
+ mark={false}
674
+ keyboard={false}
675
+ underline={false}
676
+ strong={false}
677
+ className="text-3xl font-normal tracking-normal [lineHeight:38px] text-[rgba(56, 56, 56, 1)] mb-[11px]"
678
+ >
679
+ 45.82%
680
+ </Typography.Text>
681
+ <View className="flex flex-row items-center gap-4">
682
+ <View className="flex flex-row items-center">
683
+ <Typography.Text
684
+ code={false}
685
+ delete={false}
686
+ disabled={false}
687
+ mark={false}
688
+ keyboard={false}
689
+ underline={false}
690
+ strong={false}
691
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)] mr-[8px]"
692
+ >
693
+ 周同比
694
+ </Typography.Text>
695
+ <AtIcon
696
+ value="clock"
697
+ size={16}
698
+ color="#5be41e"
699
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 8.73297119140625 4.6000001430511475&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M0.801605 0.8L3.80161 3.8L6.80161 0.8L0.801605 0.8Z&#34; stroke=&#34;currentColor&#34; stroke-width=&#34;1.5999999999999999&#34; stroke-linejoin=&#34;round&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
700
+ className="mr-[2px]"
701
+ />
702
+ <Typography.Text
703
+ code={false}
704
+ delete={false}
705
+ disabled={false}
706
+ mark={false}
707
+ keyboard={false}
708
+ underline={false}
709
+ strong={false}
710
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)]"
711
+ >
712
+ 6.47%
713
+ </Typography.Text>
714
+ </View>
715
+ <View className="flex flex-row items-center">
716
+ <Typography.Text
717
+ code={false}
718
+ delete={false}
719
+ disabled={false}
720
+ mark={false}
721
+ keyboard={false}
722
+ underline={false}
723
+ strong={false}
724
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)] mr-[8px]"
725
+ >
726
+ 月同比
727
+ </Typography.Text>
728
+ <AtIcon
729
+ value="clock"
730
+ size={16}
731
+ color="#e32727"
732
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 8.277473449707031 4.333333373069763&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M3.668 0.666667L0.667999 3.66667L6.668 3.66667L3.668 0.666667Z&#34; stroke=&#34;currentColor&#34; stroke-width=&#34;1.3333333333333333&#34; stroke-linejoin=&#34;round&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
733
+ className="mr-[2px]"
734
+ />
735
+ <Typography.Text
736
+ code={false}
737
+ delete={false}
738
+ disabled={false}
739
+ mark={false}
740
+ keyboard={false}
741
+ underline={false}
742
+ strong={false}
743
+ className="text-sm font-normal tracking-normal [lineHeight:16.41px] text-[rgba(0, 0, 0, 0.6)]"
744
+ >
745
+ 0.9%
746
+ </Typography.Text>
747
+ </View>
748
+ </View>
749
+ </View>
750
+ </View>
751
+ <Typography.Text
752
+ code={false}
753
+ delete={false}
754
+ disabled={false}
755
+ mark={false}
756
+ keyboard={false}
757
+ underline={false}
758
+ strong={false}
759
+ className="BKzrX8CSn0 text-xs font-normal tracking-[-0.22px] [lineHeight:12px] text-[rgba(94, 94, 94, 1)]"
760
+ _unsafe_classNameJson={[{ selector: 'BKzrX8CSn0' }]}
761
+ >
762
+ 参考线 55%
763
+ </Typography.Text>
764
+ <View>
765
+ <ECharts
766
+ advanced={true}
767
+ title={{ text: '柱状图-堆叠图', show: false }}
768
+ tooltip={{ trigger: 'item', show: false }}
769
+ legend={{ show: false, data: ['销量'] }}
770
+ xAxis={{
771
+ type: 'category',
772
+ name: 'Appthen',
773
+ show: false,
774
+ data: [
775
+ '衬衫',
776
+ '羊毛衫',
777
+ '雪纺衫',
778
+ '裤子',
779
+ '高跟鞋',
780
+ '袜子',
781
+ ],
782
+ }}
783
+ yAxis={{ type: 'value', name: '柱状图-瀑布图', show: false }}
784
+ series={[
785
+ {
786
+ name: '销量',
787
+ type: 'bar',
788
+ data: [5, 20, 36, 10, 10, 20],
789
+ stack: 'samesign',
790
+ },
791
+ {
792
+ name: '标题',
793
+ type: 'bar',
794
+ data: [0, 10, 36, 20, 30, 10],
795
+ stack: 'all',
796
+ },
797
+ ]}
798
+ option={{
799
+ grid: { left: 0, bottom: 0, right: 0, top: 0 },
800
+ tooltip: {
801
+ trigger: 'axis',
802
+ axisPointer: { type: 'shadow' },
803
+ },
804
+ xAxis: {
805
+ type: 'category',
806
+ data: ['2021-03', '2021-04', '2021-05'],
807
+ show: true,
808
+ axisLabel: { show: true, interval: 0 },
809
+ axisLine: { show: false },
810
+ axisTick: { show: false },
811
+ },
812
+ yAxis: {
813
+ type: 'value',
814
+ show: false,
815
+ min: 0,
816
+ max: 50,
817
+ axisLine: { show: false },
818
+ axisLabel: { show: false },
819
+ axisTick: { show: true },
820
+ splitLine: {
821
+ show: true,
822
+ lineStyle: { color: ['rgba(0,0,0,0)'], width: 1 },
823
+ },
824
+ },
825
+ series: [
826
+ {
827
+ name: '系列1',
828
+ type: 'bar',
829
+ data: [10, 20, 30],
830
+ itemStyle: { normal: { barBorderRadius: 5 } },
831
+ },
832
+ {
833
+ name: '系列2',
834
+ type: 'bar',
835
+ data: [30, 40, 50],
836
+ itemStyle: { normal: { barBorderRadius: 5 } },
837
+ },
838
+ {
839
+ name: '标准线',
840
+ type: 'line',
841
+ markLine: {
842
+ symbol: ['none', 'circle'],
843
+ symbolSize: [0, 5],
844
+ data: [{ yAxis: 20, name: '标准线' }],
845
+ lineStyle: { color: 'red', width: 2, type: 'solid' },
846
+ },
847
+ },
848
+ ],
849
+ }}
850
+ color={['#bd10e0', '#0079f2']}
851
+ className="h-[96px]"
852
+ />
853
+ </View>
854
+ </Card>
855
+ </Col>
856
+ <Col span={7} order={0} className="flex flex-col gap-5">
857
+ <Card
858
+ title="排查代办提示"
859
+ actions={[]}
860
+ bordered={false}
861
+ extra={
862
+ <AtIcon
863
+ value="clock"
864
+ size={23}
865
+ color="rgba(102,102,102,0.61)"
866
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 18 3&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M1.5 3C2.325 3 3 2.325 3 1.5C3 0.675 2.325 0 1.5 0C0.675 0 0 0.675 0 1.5C0 2.325 0.675 3 1.5 3ZM10.5 1.5C10.5 2.325 9.825 3 9 3C8.175 3 7.5 2.325 7.5 1.5C7.5 0.675 8.175 0 9 0C9.825 0 10.5 0.675 10.5 1.5ZM16.5 3C17.325 3 18 2.325 18 1.5C18 0.675 17.325 0 16.5 0C15.675 0 15 0.675 15 1.5C15 2.325 15.675 3 16.5 3Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
867
+ />
868
+ }
869
+ hoverable={false}
870
+ loading={false}
871
+ size="default"
872
+ type="default"
873
+ headStyle={{
874
+ border: 'none',
875
+ fontSize: '16px',
876
+ fontWeight: 600,
877
+ color: '#202020',
878
+ paddingTop: '16px',
879
+ }}
880
+ _unsafe_MixedSetter_extra_select="SlotSetter"
881
+ className="shadow-none"
882
+ >
883
+ <View className="flex flex-col gap-6">
884
+ <View className="flex gap-6 flex-row">
885
+ <Image
886
+ src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
887
+ height={120}
888
+ width={120}
889
+ remote={false}
890
+ fit={false}
891
+ className="rounded-[50%] w-[36px] h-[36px]"
892
+ />
893
+ <View className="flex flex-col justify-between">
894
+ <Typography.Text
895
+ code={false}
896
+ delete={false}
897
+ disabled={false}
898
+ mark={false}
899
+ keyboard={false}
900
+ underline={false}
901
+ strong={false}
902
+ className="text-xs font-normal tracking-normal [lineHeight:14px] text-[rgba(0, 0, 0, 1)]"
903
+ >
904
+ 未出单数远高于往期,请排查出货流程
905
+ </Typography.Text>
906
+ <View className="flex flex-row justify-start">
907
+ <AtIcon
908
+ value="clock"
909
+ size={12}
910
+ color="#666"
911
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 12 12&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M1.5 10.5L10.5 10.5C10.776 10.5 11 10.276 11 10L11 2C11 1.724 10.776 1.5 10.5 1.5L8.5 1.5L8.5 0.5L7.5 0.5L7.5 1.5L4.5 1.5L4.5 0.5L3.5 0.5L3.5 1.5L1.5 1.5C1.224 1.5 1 1.724 1 2L1 10C1 10.276 1.224 10.5 1.5 10.5ZM3.5 3.5L3.5 2.5L2 2.5L2 4.5L10 4.5L10 2.5L8.5 2.5L8.5 3.5L7.5 3.5L7.5 2.5L4.5 2.5L4.5 3.5L3.5 3.5ZM10 9.5L2 9.5L2 5.5L10 5.5L10 9.5ZM3 7.5L3 6.5L4 6.5L4 7.5L3 7.5ZM5.5 6.5L5.5 7.5L6.5 7.5L6.5 6.5L5.5 6.5ZM8 6.5L8 7.5L9 7.5L9 6.5L8 6.5Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
912
+ className="mr-[5px]"
913
+ />
914
+ <Typography.Text
915
+ code={false}
916
+ delete={false}
917
+ disabled={false}
918
+ mark={false}
919
+ keyboard={false}
920
+ underline={false}
921
+ strong={false}
922
+ ellipsis={false}
923
+ className="text-xs font-normal tracking-normal [lineHeight:20px] text-[rgba(0, 0, 0, 0.6)]"
924
+ >
925
+ 2021-08-01
926
+ </Typography.Text>
927
+ </View>
928
+ </View>
929
+ </View>
930
+ <View className="flex gap-6 flex-row">
931
+ <Image
932
+ src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
933
+ height={120}
934
+ width={120}
935
+ remote={false}
936
+ fit={false}
937
+ className="rounded-[50%] w-[36px] h-[36px]"
938
+ />
939
+ <View className="flex flex-col justify-between">
940
+ <Typography.Text
941
+ code={false}
942
+ delete={false}
943
+ disabled={false}
944
+ mark={false}
945
+ keyboard={false}
946
+ underline={false}
947
+ strong={false}
948
+ className="text-xs font-normal tracking-normal [lineHeight:14px] text-[rgba(0, 0, 0, 1)]"
949
+ >
950
+ 未出单数远高于往期,请排查出货流程
951
+ </Typography.Text>
952
+ <View className="flex flex-row justify-start">
953
+ <AtIcon
954
+ value="clock"
955
+ size={12}
956
+ color="#666"
957
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 12 12&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M1.5 10.5L10.5 10.5C10.776 10.5 11 10.276 11 10L11 2C11 1.724 10.776 1.5 10.5 1.5L8.5 1.5L8.5 0.5L7.5 0.5L7.5 1.5L4.5 1.5L4.5 0.5L3.5 0.5L3.5 1.5L1.5 1.5C1.224 1.5 1 1.724 1 2L1 10C1 10.276 1.224 10.5 1.5 10.5ZM3.5 3.5L3.5 2.5L2 2.5L2 4.5L10 4.5L10 2.5L8.5 2.5L8.5 3.5L7.5 3.5L7.5 2.5L4.5 2.5L4.5 3.5L3.5 3.5ZM10 9.5L2 9.5L2 5.5L10 5.5L10 9.5ZM3 7.5L3 6.5L4 6.5L4 7.5L3 7.5ZM5.5 6.5L5.5 7.5L6.5 7.5L6.5 6.5L5.5 6.5ZM8 6.5L8 7.5L9 7.5L9 6.5L8 6.5Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
958
+ className="mr-[5px]"
959
+ />
960
+ <Typography.Text
961
+ code={false}
962
+ delete={false}
963
+ disabled={false}
964
+ mark={false}
965
+ keyboard={false}
966
+ underline={false}
967
+ strong={false}
968
+ ellipsis={false}
969
+ className="text-xs font-normal tracking-normal [lineHeight:20px] text-[rgba(0, 0, 0, 0.6)]"
970
+ >
971
+ 2021-08-01
972
+ </Typography.Text>
973
+ </View>
974
+ </View>
975
+ </View>
976
+ </View>
977
+ </Card>
978
+ <Card
979
+ title="预警提示"
980
+ actions={[]}
981
+ bordered={false}
982
+ extra={
983
+ <AtIcon
984
+ value="clock"
985
+ size={23}
986
+ color="rgba(102,102,102,0.61)"
987
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 18 3&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M1.5 3C2.325 3 3 2.325 3 1.5C3 0.675 2.325 0 1.5 0C0.675 0 0 0.675 0 1.5C0 2.325 0.675 3 1.5 3ZM10.5 1.5C10.5 2.325 9.825 3 9 3C8.175 3 7.5 2.325 7.5 1.5C7.5 0.675 8.175 0 9 0C9.825 0 10.5 0.675 10.5 1.5ZM16.5 3C17.325 3 18 2.325 18 1.5C18 0.675 17.325 0 16.5 0C15.675 0 15 0.675 15 1.5C15 2.325 15.675 3 16.5 3Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
988
+ />
989
+ }
990
+ hoverable={false}
991
+ loading={false}
992
+ size="default"
993
+ type="default"
994
+ headStyle={{
995
+ border: 'none',
996
+ fontSize: '16px',
997
+ fontWeight: 600,
998
+ color: '#202020',
999
+ paddingTop: '16px',
1000
+ }}
1001
+ _unsafe_MixedSetter_extra_select="SlotSetter"
1002
+ className="shadow-none bg-gradient-to-b from-[#4580FF] via-[#148EFF] to-[#0A60FF]"
1003
+ >
1004
+ <View className="flex flex-col gap-6">
1005
+ <View className="flex gap-6 flex-row">
1006
+ <View className="flex flex-row justify-start items-end">
1007
+ <Typography.Text
1008
+ code={false}
1009
+ delete={false}
1010
+ disabled={false}
1011
+ mark={false}
1012
+ keyboard={false}
1013
+ underline={false}
1014
+ strong={false}
1015
+ className="text-xs font-medium tracking-normal [lineHeight:20px] text-[rgba(255, 255, 255, 1)] mr-[5px]"
1016
+ >
1017
+ 同期未出单数高出上月同比
1018
+ </Typography.Text>
1019
+ <Typography.Text
1020
+ code={false}
1021
+ delete={false}
1022
+ disabled={false}
1023
+ mark={false}
1024
+ keyboard={false}
1025
+ underline={false}
1026
+ strong={false}
1027
+ className="text-2xl font-bold tracking-normal [lineHeight:38px] text-[rgba(255, 255, 255, 1)]"
1028
+ >
1029
+ 10.23%
1030
+ </Typography.Text>
1031
+ </View>
1032
+ </View>
1033
+ </View>
1034
+ </Card>
1035
+ </Col>
1036
+ <Col span={9} order={0}>
1037
+ <Card
1038
+ title="产品销售好评度"
1039
+ actions={[]}
1040
+ bordered={false}
1041
+ extra={
1042
+ <View className="flex flex-row items-center">
1043
+ <AtIcon
1044
+ value="clock"
1045
+ size={20}
1046
+ color="#666"
1047
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 12 12&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M10.5 1.5L8.5 1.5L8.5 0.5L7.5 0.5L7.5 1.5L4.5 1.5L4.5 0.5L3.5 0.5L3.5 1.5L1.5 1.5C1.224 1.5 1 1.724 1 2L1 10C1 10.276 1.224 10.5 1.5 10.5L10.5 10.5C10.776 10.5 11 10.276 11 10L11 2C11 1.724 10.776 1.5 10.5 1.5ZM4.5 2.5L4.5 3.5L3.5 3.5L3.5 2.5L2 2.5L2 4.5L10 4.5L10 2.5L8.5 2.5L8.5 3.5L7.5 3.5L7.5 2.5L4.5 2.5ZM10 9.5L2 9.5L2 5.5L10 5.5L10 9.5ZM3 7.5L3 6.5L4 6.5L4 7.5L3 7.5ZM5.5 6.5L5.5 7.5L6.5 7.5L6.5 6.5L5.5 6.5ZM8 6.5L8 7.5L9 7.5L9 6.5L8 6.5Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
1048
+ />
1049
+ <Select
1050
+ options={[
1051
+ { label: 'A', value: 'A' },
1052
+ { label: 'B', value: 'B' },
1053
+ { label: 'C', value: 'C' },
1054
+ ]}
1055
+ allowClear={false}
1056
+ autoFocus={false}
1057
+ defaultActiveFirstOption={true}
1058
+ disabled={false}
1059
+ labelInValue={false}
1060
+ placeholder="近一个月"
1061
+ showSearch={false}
1062
+ size="small"
1063
+ loading={false}
1064
+ bordered={false}
1065
+ optionFilterProp="value"
1066
+ tokenSeparators={[]}
1067
+ maxTagCount={0}
1068
+ maxTagTextLength={0}
1069
+ fieldNames={{
1070
+ label: 'label',
1071
+ value: 'value',
1072
+ options: 'options',
1073
+ groupLabel: 'label',
1074
+ }}
1075
+ className="w-full text-xs [lineHeight:12px]"
1076
+ />
1077
+ </View>
1078
+ }
1079
+ hoverable={false}
1080
+ loading={false}
1081
+ size="default"
1082
+ type="default"
1083
+ headStyle={{
1084
+ border: 'none',
1085
+ fontSize: '16px',
1086
+ fontWeight: 600,
1087
+ color: '#202020',
1088
+ paddingTop: '16px',
1089
+ }}
1090
+ _unsafe_MixedSetter_extra_select="SlotSetter"
1091
+ className="shadow-none"
1092
+ >
1093
+ <View>
1094
+ <View className="gap-6 flex items-center flex-row justify-start h-[45px]">
1095
+ <View className="w-[18px] h-[18px] bg-[#383838] rounded-[50%] flex flex-row justify-center items-center">
1096
+ <Typography.Text
1097
+ code={false}
1098
+ delete={false}
1099
+ disabled={false}
1100
+ mark={false}
1101
+ keyboard={false}
1102
+ underline={false}
1103
+ strong={false}
1104
+ ellipsis={false}
1105
+ className="text-xs font-normal tracking-normal [lineHeight:12px] text-[rgba(255, 255, 255, 1)] block"
1106
+ >
1107
+ 1
1108
+ </Typography.Text>
1109
+ </View>
1110
+ <View>
1111
+ <Typography.Text
1112
+ code={false}
1113
+ delete={false}
1114
+ disabled={false}
1115
+ mark={false}
1116
+ keyboard={false}
1117
+ underline={false}
1118
+ strong={false}
1119
+ ellipsis={true}
1120
+ className="text-sm font-normal tracking-normal [lineHeight:22px] text-[rgba(56, 56, 56, 1)] w-[113px]"
1121
+ >
1122
+ 图马思特
1123
+ </Typography.Text>
1124
+ </View>
1125
+ <View className="flex-1">
1126
+ <Progress
1127
+ percent={20}
1128
+ status="active"
1129
+ type="line"
1130
+ showInfo={true}
1131
+ strokeWidth={10}
1132
+ strokeColor="#4a90e2"
1133
+ trailColor="rgba(0,0,0,0.11)"
1134
+ steps={0}
1135
+ gapDegree={0}
1136
+ gapPosition="top"
1137
+ strokeLinecap="square"
1138
+ className="[lineHeight:10px]"
1139
+ />
1140
+ </View>
1141
+ </View>
1142
+ <View className="gap-6 flex items-center flex-row justify-start h-[45px]">
1143
+ <View className="w-[18px] h-[18px] bg-[#383838] rounded-[50%] flex flex-row justify-center items-center">
1144
+ <Typography.Text
1145
+ code={false}
1146
+ delete={false}
1147
+ disabled={false}
1148
+ mark={false}
1149
+ keyboard={false}
1150
+ underline={false}
1151
+ strong={false}
1152
+ ellipsis={false}
1153
+ className="text-xs font-normal tracking-normal [lineHeight:12px] text-[rgba(255, 255, 255, 1)] block"
1154
+ >
1155
+ 2
1156
+ </Typography.Text>
1157
+ </View>
1158
+ <View>
1159
+ <Typography.Text
1160
+ code={false}
1161
+ delete={false}
1162
+ disabled={false}
1163
+ mark={false}
1164
+ keyboard={false}
1165
+ underline={false}
1166
+ strong={false}
1167
+ ellipsis={true}
1168
+ className="text-sm font-normal tracking-normal [lineHeight:22px] text-[rgba(56, 56, 56, 1)] w-[113px]"
1169
+ >
1170
+ FANATEC
1171
+ </Typography.Text>
1172
+ </View>
1173
+ <View className="flex-1">
1174
+ <Progress
1175
+ percent={20}
1176
+ status="active"
1177
+ type="line"
1178
+ showInfo={true}
1179
+ strokeWidth={10}
1180
+ strokeColor="#4a90e2"
1181
+ trailColor="rgba(0,0,0,0.11)"
1182
+ steps={0}
1183
+ gapDegree={0}
1184
+ gapPosition="top"
1185
+ strokeLinecap="square"
1186
+ className="[lineHeight:10px]"
1187
+ />
1188
+ </View>
1189
+ </View>
1190
+ <View className="gap-6 flex items-center flex-row justify-start h-[45px]">
1191
+ <View className="w-[18px] h-[18px] bg-[#383838] rounded-[50%] flex flex-row justify-center items-center">
1192
+ <Typography.Text
1193
+ code={false}
1194
+ delete={false}
1195
+ disabled={false}
1196
+ mark={false}
1197
+ keyboard={false}
1198
+ underline={false}
1199
+ strong={false}
1200
+ ellipsis={false}
1201
+ className="text-xs font-normal tracking-normal [lineHeight:12px] text-[rgba(255, 255, 255, 1)] block"
1202
+ >
1203
+ 3
1204
+ </Typography.Text>
1205
+ </View>
1206
+ <View>
1207
+ <Typography.Text
1208
+ code={false}
1209
+ delete={false}
1210
+ disabled={false}
1211
+ mark={false}
1212
+ keyboard={false}
1213
+ underline={false}
1214
+ strong={false}
1215
+ ellipsis={true}
1216
+ className="text-sm font-normal tracking-normal [lineHeight:22px] text-[rgba(56, 56, 56, 1)] w-[113px]"
1217
+ >
1218
+ HORI
1219
+ </Typography.Text>
1220
+ </View>
1221
+ <View className="flex-1">
1222
+ <Progress
1223
+ percent={20}
1224
+ status="active"
1225
+ type="line"
1226
+ showInfo={true}
1227
+ strokeWidth={10}
1228
+ strokeColor="#4a90e2"
1229
+ trailColor="rgba(0,0,0,0.11)"
1230
+ steps={0}
1231
+ gapDegree={0}
1232
+ gapPosition="top"
1233
+ strokeLinecap="square"
1234
+ className="[lineHeight:10px]"
1235
+ />
1236
+ </View>
1237
+ </View>
1238
+ <View className="gap-6 flex items-center flex-row justify-start h-[45px]">
1239
+ <View className="w-[18px] h-[18px] bg-[rgba(217, 217, 217, 1)] rounded-[50%] flex flex-row justify-center items-center">
1240
+ <Typography.Text
1241
+ code={false}
1242
+ delete={false}
1243
+ disabled={false}
1244
+ mark={false}
1245
+ keyboard={false}
1246
+ underline={false}
1247
+ strong={false}
1248
+ ellipsis={false}
1249
+ className="text-xs font-normal tracking-normal [lineHeight:12px] text-[rgba(255, 255, 255, 1)] block"
1250
+ >
1251
+ 4
1252
+ </Typography.Text>
1253
+ </View>
1254
+ <View>
1255
+ <Typography.Text
1256
+ code={false}
1257
+ delete={false}
1258
+ disabled={false}
1259
+ mark={false}
1260
+ keyboard={false}
1261
+ underline={false}
1262
+ strong={false}
1263
+ ellipsis={true}
1264
+ className="text-sm font-normal tracking-normal [lineHeight:22px] text-[rgba(56, 56, 56, 1)] w-[113px]"
1265
+ >
1266
+ Logitech - Ske…
1267
+ </Typography.Text>
1268
+ </View>
1269
+ <View className="flex-1">
1270
+ <Progress
1271
+ percent={20}
1272
+ status="active"
1273
+ type="line"
1274
+ showInfo={true}
1275
+ strokeWidth={10}
1276
+ strokeColor="#4a90e2"
1277
+ trailColor="rgba(0,0,0,0.11)"
1278
+ steps={0}
1279
+ gapDegree={0}
1280
+ gapPosition="top"
1281
+ strokeLinecap="square"
1282
+ className="[lineHeight:10px]"
1283
+ />
1284
+ </View>
1285
+ </View>
1286
+ <View className="gap-6 flex items-center flex-row justify-start h-[45px] mb-[3px]">
1287
+ <View className="w-[18px] h-[18px] bg-[rgba(217, 217, 217, 1)] rounded-[50%] flex flex-row justify-center items-center">
1288
+ <Typography.Text
1289
+ code={false}
1290
+ delete={false}
1291
+ disabled={false}
1292
+ mark={false}
1293
+ keyboard={false}
1294
+ underline={false}
1295
+ strong={false}
1296
+ ellipsis={false}
1297
+ className="text-xs font-normal tracking-normal [lineHeight:12px] text-[rgba(255, 255, 255, 1)] block"
1298
+ >
1299
+ 5
1300
+ </Typography.Text>
1301
+ </View>
1302
+ <View>
1303
+ <Typography.Text
1304
+ code={false}
1305
+ delete={false}
1306
+ disabled={false}
1307
+ mark={false}
1308
+ keyboard={false}
1309
+ underline={false}
1310
+ strong={false}
1311
+ ellipsis={true}
1312
+ className="text-sm font-normal tracking-normal [lineHeight:22px] text-[rgba(56, 56, 56, 1)] w-[113px]"
1313
+ >
1314
+ PXN莱仕达
1315
+ </Typography.Text>
1316
+ </View>
1317
+ <View className="flex-1">
1318
+ <Progress
1319
+ percent={20}
1320
+ status="active"
1321
+ type="line"
1322
+ showInfo={true}
1323
+ strokeWidth={10}
1324
+ strokeColor="#4a90e2"
1325
+ trailColor="rgba(0,0,0,0.11)"
1326
+ steps={0}
1327
+ gapDegree={0}
1328
+ gapPosition="top"
1329
+ strokeLinecap="square"
1330
+ className="[lineHeight:10px]"
1331
+ />
1332
+ </View>
1333
+ </View>
1334
+ </View>
1335
+ </Card>
1336
+ </Col>
1337
+ <Col span={15} order={0}>
1338
+ <Card
1339
+ title="成员管理"
1340
+ actions={[]}
1341
+ bordered={false}
1342
+ extra={
1343
+ <View className="flex flex-row gap-2">
1344
+ <Button
1345
+ type="default"
1346
+ children={
1347
+ <Typography.Text
1348
+ code={false}
1349
+ delete={false}
1350
+ disabled={false}
1351
+ mark={false}
1352
+ keyboard={false}
1353
+ underline={false}
1354
+ strong={false}
1355
+ ellipsis={false}
1356
+ className="text-sm font-normal tracking-normal [lineHeight:22px] text-[rgba(0, 0, 0, 0.6)]"
1357
+ >
1358
+ 批量导出
1359
+ </Typography.Text>
1360
+ }
1361
+ htmlType="button"
1362
+ size="middle"
1363
+ shape="default"
1364
+ block={false}
1365
+ danger={false}
1366
+ ghost={false}
1367
+ disabled={false}
1368
+ _unsafe_MixedSetter_children_select="SlotSetter"
1369
+ className="w-[88px] h-[32px]"
1370
+ />
1371
+ <Button
1372
+ type="primary"
1373
+ htmlType="button"
1374
+ size="middle"
1375
+ shape="default"
1376
+ block={false}
1377
+ danger={false}
1378
+ ghost={false}
1379
+ disabled={false}
1380
+ className="w-[88px] h-[32px]"
1381
+ >
1382
+ 添加成员
1383
+ </Button>
1384
+ </View>
1385
+ }
1386
+ hoverable={false}
1387
+ loading={false}
1388
+ size="default"
1389
+ type="default"
1390
+ headStyle={{
1391
+ border: 'none',
1392
+ fontSize: '16px',
1393
+ fontWeight: 600,
1394
+ color: '#202020',
1395
+ paddingTop: '16px',
1396
+ }}
1397
+ _unsafe_MixedSetter_extra_select="SlotSetter"
1398
+ className="shadow-none"
1399
+ >
1400
+ <View>
1401
+ <ProTable
1402
+ cardBordered={true}
1403
+ dataSource={[
1404
+ {
1405
+ id: '1',
1406
+ name: '申泰',
1407
+ age: 32,
1408
+ emal: 'mojujo@liajici.np',
1409
+ status: 'close',
1410
+ address: '西湖区湖底公园1号',
1411
+ },
1412
+ {
1413
+ id: '2',
1414
+ name: '占叶',
1415
+ status: 'running',
1416
+ emal: 'soofku@silbu.tn',
1417
+ age: 28,
1418
+ address: '滨江区网商路699号',
1419
+ },
1420
+ {
1421
+ id: '3',
1422
+ name: '豆媛固',
1423
+ status: 'online',
1424
+ emal: 'gomaf@zof.hn',
1425
+ age: 28,
1426
+ address: '滨江区网商路699号',
1427
+ },
1428
+ {
1429
+ id: '4',
1430
+ name: '琚义晶',
1431
+ status: 'error',
1432
+ emal: 'javkuura@nuzok.na',
1433
+ age: 28,
1434
+ address: '滨江区网商路699号',
1435
+ },
1436
+ {
1437
+ id: '5',
1438
+ name: '裘珍',
1439
+ status: 'close',
1440
+ emal: 'gop@zewrehpas.nr',
1441
+ age: 28,
1442
+ address: '滨江区网商路699号',
1443
+ },
1444
+ ]}
1445
+ columns={[
1446
+ {
1447
+ title: options => (
1448
+ <Typography.Text
1449
+ code={false}
1450
+ delete={false}
1451
+ disabled={false}
1452
+ mark={false}
1453
+ keyboard={false}
1454
+ underline={false}
1455
+ strong={false}
1456
+ ellipsis={false}
1457
+ className="text-sm font-medium tracking-normal [lineHeight:22px] text-[rgba(102, 102, 102, 1)]"
1458
+ >
1459
+ 成员名称
1460
+ </Typography.Text>
1461
+ ),
1462
+ dataIndex: 'name',
1463
+ valueType: 'text',
1464
+ align: 'left',
1465
+ fixed: '',
1466
+ _unsafe_MixedSetter_title_select: 'SlotSetter',
1467
+ render: (text, record, index) => (
1468
+ <View className="flex flex-row items-center gap-3">
1469
+ <Image
1470
+ src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
1471
+ height={120}
1472
+ width={120}
1473
+ remote={false}
1474
+ fit={false}
1475
+ className="rounded-[50%] w-[36px] h-[36px]"
1476
+ />
1477
+ <Text className="text-sm">{text}</Text>
1478
+ </View>
1479
+ ),
1480
+ },
1481
+ {
1482
+ title: options => (
1483
+ <Typography.Text
1484
+ code={false}
1485
+ delete={false}
1486
+ disabled={false}
1487
+ mark={false}
1488
+ keyboard={false}
1489
+ underline={false}
1490
+ strong={false}
1491
+ ellipsis={false}
1492
+ className="text-sm font-medium tracking-normal [lineHeight:22px] text-[rgba(102, 102, 102, 1)]"
1493
+ >
1494
+ 邮箱地址
1495
+ </Typography.Text>
1496
+ ),
1497
+ dataIndex: 'age',
1498
+ valueType: 'digit',
1499
+ align: 'left',
1500
+ fixed: '',
1501
+ _unsafe_MixedSetter_title_select: 'SlotSetter',
1502
+ },
1503
+ {
1504
+ title: options => (
1505
+ <Typography.Text
1506
+ code={false}
1507
+ delete={false}
1508
+ disabled={false}
1509
+ mark={false}
1510
+ keyboard={false}
1511
+ underline={false}
1512
+ strong={false}
1513
+ ellipsis={false}
1514
+ className="text-sm font-medium tracking-normal [lineHeight:22px] text-[rgba(102, 102, 102, 1)]"
1515
+ >
1516
+ 状态
1517
+ </Typography.Text>
1518
+ ),
1519
+ dataIndex: 'status',
1520
+ renderTag: false,
1521
+ valueEnum: {
1522
+ all: { text: '全部', status: 'Default' },
1523
+ close: { text: '关闭', status: 'Default' },
1524
+ running: { text: '运行中', status: 'Processing' },
1525
+ online: { text: '已上线', status: 'Success' },
1526
+ error: { text: '异常', status: 'Error' },
1527
+ },
1528
+ align: 'left',
1529
+ fixed: '',
1530
+ _unsafe_MixedSetter_title_select: 'SlotSetter',
1531
+ },
1532
+ {
1533
+ title: '操作',
1534
+ dataIndex: 'options',
1535
+ valueType: 'option',
1536
+ align: 'left',
1537
+ fixed: '',
1538
+ render: (text, record, index) => [
1539
+ <Button
1540
+ type="link"
1541
+ htmlType="button"
1542
+ size="small"
1543
+ shape="default"
1544
+ block={false}
1545
+ danger={false}
1546
+ ghost={false}
1547
+ disabled={false}
1548
+ icon=""
1549
+ >
1550
+ 编辑
1551
+ </Button>,
1552
+ <ProPopconfirm
1553
+ title="确定删除?"
1554
+ okType="primary"
1555
+ okText="确定"
1556
+ cancelText="取消"
1557
+ >
1558
+ <Button
1559
+ htmlType="button"
1560
+ type="link"
1561
+ size="small"
1562
+ shape="default"
1563
+ block={false}
1564
+ danger={true}
1565
+ ghost={false}
1566
+ disabled={false}
1567
+ icon=""
1568
+ >
1569
+ 删除
1570
+ </Button>
1571
+ </ProPopconfirm>,
1572
+ ],
1573
+ },
1574
+ ]}
1575
+ rowKey="id"
1576
+ pagination={{
1577
+ defaultPageSize: 10,
1578
+ showSizeChanger: false,
1579
+ showQuickJumper: false,
1580
+ simple: false,
1581
+ size: 'default',
1582
+ }}
1583
+ search={false}
1584
+ toolBarRender={currentPageData => (
1585
+ <Button
1586
+ type="primary"
1587
+ htmlType="button"
1588
+ size="middle"
1589
+ shape="default"
1590
+ icon={
1591
+ <Icon
1592
+ type="PlusOutlined"
1593
+ size={16}
1594
+ rotate={0}
1595
+ spin={false}
1596
+ />
1597
+ }
1598
+ block={false}
1599
+ danger={false}
1600
+ ghost={false}
1601
+ disabled={false}
1602
+ >
1603
+ 新增
1604
+ </Button>
1605
+ )}
1606
+ intl="zhCNIntl"
1607
+ manualRequest={false}
1608
+ showHeader={true}
1609
+ size="default"
1610
+ tableLayout=""
1611
+ scroll={{ scrollToFirstRowOnChange: true }}
1612
+ rowSelection={false}
1613
+ dateFormatter="string"
1614
+ />
1615
+ </View>
1616
+ </Card>
1617
+ </Col>
1618
+ <Col span={9} order={0} className="flex flex-col gap-5">
1619
+ <View className="flex flex-row gap-5 justify-between">
1620
+ <View className="flex flex-col justify-center items-center gap-3 bg-[#ffffff] h-[172px] rounded-lg w-[50%]">
1621
+ <AtIcon
1622
+ value="clock"
1623
+ size={32}
1624
+ color="#4580ff"
1625
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 32 32&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M2.66797 5.33402L2.66797 2.66802L6.66831 2.66802C7.40318 2.66802 8.00267 3.26402 8.00267 4.00202L8.00267 20.002L24.5842 20.002L27.2529 9.33401L10.6686 9.33401L10.6686 6.66802L28.9602 6.66802C29.3719 6.66802 29.7587 6.85802 30.0128 7.18202C30.2642 7.50402 30.3554 7.92602 30.2559 8.32602L26.9214 21.658C26.7722 22.252 26.239 22.668 25.6285 22.668L6.66831 22.668C5.93068 22.668 5.33394 22.072 5.33394 21.334L5.33394 5.33402L2.66797 5.33402ZM7.99874 30.6673C9.47127 30.6673 10.6654 29.4732 10.6654 28.0007C10.6654 26.5281 9.47127 25.334 7.99874 25.334C6.5262 25.334 5.33207 26.5281 5.33207 28.0007C5.33207 29.4732 6.5262 30.6673 7.99874 30.6673ZM26.6654 28.0007C26.6654 29.4732 25.4713 30.6673 23.9987 30.6673C22.5262 30.6673 21.3321 29.4732 21.3321 28.0007C21.3321 26.5281 22.5262 25.334 23.9987 25.334C25.4713 25.334 26.6654 26.5281 26.6654 28.0007Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;currentColor&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
1626
+ />
1627
+ <View className="flex flex-col items-center justify-center">
1628
+ <Typography.Text
1629
+ code={false}
1630
+ delete={false}
1631
+ disabled={false}
1632
+ mark={false}
1633
+ keyboard={false}
1634
+ underline={false}
1635
+ strong={false}
1636
+ className="text-2xl font-medium tracking-normal [lineHeight:35.52px] text-[rgba(51, 51, 51, 1)]"
1637
+ >
1638
+ 736
1639
+ </Typography.Text>
1640
+ <Typography.Text
1641
+ code={false}
1642
+ delete={false}
1643
+ disabled={false}
1644
+ mark={false}
1645
+ keyboard={false}
1646
+ underline={false}
1647
+ strong={false}
1648
+ className="text-xs font-normal tracking-normal [lineHeight:22px] text-[rgba(51, 51, 51, 1)]"
1649
+ >
1650
+ 今日总订单
1651
+ </Typography.Text>
1652
+ </View>
1653
+ </View>
1654
+ <View className="flex flex-col justify-center items-center gap-3 rounded-lg bg-[#ffffff] h-[172px] w-[50%]">
1655
+ <View className="flex flex-col items-center justify-center">
1656
+ <AtIcon
1657
+ value="clock"
1658
+ size={32}
1659
+ color="#4580ff"
1660
+ svg="&#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; width=&#34;100%&#34; height=&#34;100%&#34; viewBox=&#34;0 0 32 32&#34; fill=&#34;none&#34;&#62;&#13;&#10;&#60;path d=&#34;M13.7266 14.9262L25.9814 2.66697L27.8679 4.55431L15.6116 16.8107L13.7294 16.815L13.7266 14.9262ZM11.0695 19.484L11.0599 13.8224L21.0151 3.86717L4.00626 3.86717C3.26946 3.86717 2.67186 4.46477 2.67186 5.20157L2.67186 26.5328C2.67186 27.2696 3.26946 27.8672 4.00626 27.8672L25.3375 27.8672C26.0743 27.8672 26.6719 27.2696 26.6719 26.5328L26.6719 9.52397L16.7215 19.4744L11.0695 19.484Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;#E9F2FF&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;path d=&#34;M13.7266 15.059L25.9814 2.79978L27.8679 4.68712L15.6116 16.9435L13.7294 16.9478L13.7266 15.059ZM25.3336 28C26.0704 28 26.668 27.4024 26.668 26.6656L26.668 9.65678L24.0016 12.3232L24.0016 25.3336L5.33436 25.3336L5.33436 6.66638L18.3448 6.66638L21.0112 3.99998L4.00236 3.99998C3.26556 3.99998 2.66796 4.59758 2.66796 5.33438L2.66796 26.6656C2.66796 27.4024 3.26556 28 4.00236 28L25.3336 28Z&#34; fill-rule=&#34;evenodd&#34; fill=&#34;#4580FF&#34; &#62;&#13;&#10;&#60;/path&#62;&#13;&#10;&#60;/svg&#62;&#13;&#10;"
1661
+ />
1662
+ <Typography.Text
1663
+ code={false}
1664
+ delete={false}
1665
+ disabled={false}
1666
+ mark={false}
1667
+ keyboard={false}
1668
+ underline={false}
1669
+ strong={false}
1670
+ className="text-2xl font-medium tracking-normal [lineHeight:35.52px] text-[rgba(51, 51, 51, 1)]"
1671
+ >
1672
+ 12
1673
+ </Typography.Text>
1674
+ <Typography.Text
1675
+ code={false}
1676
+ delete={false}
1677
+ disabled={false}
1678
+ mark={false}
1679
+ keyboard={false}
1680
+ underline={false}
1681
+ strong={false}
1682
+ className="text-xs font-normal tracking-normal [lineHeight:22px] text-[rgba(51, 51, 51, 1)]"
1683
+ >
1684
+ 未完成待办
1685
+ </Typography.Text>
1686
+ </View>
1687
+ </View>
1688
+ </View>
1689
+ <View>
1690
+ <Card
1691
+ title="今日核心指标"
1692
+ actions={[]}
1693
+ bordered={false}
1694
+ extra={
1695
+ <Select
1696
+ options={[
1697
+ { label: '2021-08-01', value: 'A' },
1698
+ { label: '2021-08-02', value: 'B' },
1699
+ { label: '2021-08-03', value: 'C' },
1700
+ ]}
1701
+ defaultValue={[]}
1702
+ allowClear={false}
1703
+ autoFocus={false}
1704
+ defaultActiveFirstOption={true}
1705
+ disabled={false}
1706
+ labelInValue={false}
1707
+ placeholder="2021-08-01"
1708
+ showSearch={false}
1709
+ loading={false}
1710
+ bordered={false}
1711
+ optionFilterProp="value"
1712
+ tokenSeparators={[]}
1713
+ maxTagCount={0}
1714
+ maxTagTextLength={0}
1715
+ className="w-full"
1716
+ />
1717
+ }
1718
+ hoverable={false}
1719
+ loading={false}
1720
+ size="default"
1721
+ type="default"
1722
+ headStyle={{
1723
+ border: 'none',
1724
+ fontSize: '16px',
1725
+ fontWeight: 600,
1726
+ color: '#202020',
1727
+ paddingTop: '16px',
1728
+ display: 'none',
1729
+ }}
1730
+ _unsafe_MixedSetter_extra_select="SlotSetter"
1731
+ className="shadow-none"
1732
+ >
1733
+ <View className="">
1734
+ <Calendar fullscreen={false} mode="month" />
1735
+ </View>
1736
+ </Card>
1737
+ </View>
1738
+ </Col>
1739
+ </Row>
1740
+ </Page>
1741
+ );
1742
+ }
1743
+ }
1744
+
1745
+ export default Document;