bohui-vue 1.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 (104) hide show
  1. package/README.md +121 -0
  2. package/bin/create-vue-template.js +565 -0
  3. package/package.json +28 -0
  4. package/templates/vue-project/.browserslistrc +3 -0
  5. package/templates/vue-project/.editorconfig +28 -0
  6. package/templates/vue-project/.env.development +2 -0
  7. package/templates/vue-project/.env.production +2 -0
  8. package/templates/vue-project/.eslintrc.cjs +76 -0
  9. package/templates/vue-project/.keep +0 -0
  10. package/templates/vue-project/.node-version +1 -0
  11. package/templates/vue-project/.prettierignore +13 -0
  12. package/templates/vue-project/.prettierrc +20 -0
  13. package/templates/vue-project/.prettierrc.txt +130 -0
  14. package/templates/vue-project/.stylelintrc.json +94 -0
  15. package/templates/vue-project/README.md +24 -0
  16. package/templates/vue-project/babel.config.js +5 -0
  17. package/templates/vue-project/index.html +34 -0
  18. package/templates/vue-project/package.json +75 -0
  19. package/templates/vue-project/public/favicon.ico +0 -0
  20. package/templates/vue-project/public/static/img/ai-default.jpg +0 -0
  21. package/templates/vue-project/public/static/img/image.png +0 -0
  22. package/templates/vue-project/public/static/img/ppt1.png +0 -0
  23. package/templates/vue-project/public/static/img/ppt2.png +0 -0
  24. package/templates/vue-project/public/static/img/ppt3.png +0 -0
  25. package/templates/vue-project/public/static/js/config.js +11 -0
  26. package/templates/vue-project/public/static/js/dataConfig.js +1143 -0
  27. package/templates/vue-project/src/App.vue +10 -0
  28. package/templates/vue-project/src/api/error-handler.ts +60 -0
  29. package/templates/vue-project/src/api/http.ts +254 -0
  30. package/templates/vue-project/src/api/services/aicebd.ts +47 -0
  31. package/templates/vue-project/src/api/services/base.ts +18 -0
  32. package/templates/vue-project/src/api/services/umse.ts +17 -0
  33. package/templates/vue-project/src/assets/font/Alibaba-PuHuiTi-Medium.otf +0 -0
  34. package/templates/vue-project/src/assets/font/Alibaba-PuHuiTi-Regular.otf +0 -0
  35. package/templates/vue-project/src/assets/font/DOUYINSANSBOLD.OTF +0 -0
  36. package/templates/vue-project/src/assets/font/Pangmen-Title.TTF +0 -0
  37. package/templates/vue-project/src/assets/font/font.css +25 -0
  38. package/templates/vue-project/src/assets/iconfont/iconfont.css +402 -0
  39. package/templates/vue-project/src/assets/iconfont/iconfont.js +66 -0
  40. package/templates/vue-project/src/assets/iconfont/iconfont.json +688 -0
  41. package/templates/vue-project/src/assets/iconfont/iconfont.ttf +0 -0
  42. package/templates/vue-project/src/assets/iconfont/iconfont.woff +0 -0
  43. package/templates/vue-project/src/assets/iconfont/iconfont.woff2 +0 -0
  44. package/templates/vue-project/src/assets/images/Click-tap.png +0 -0
  45. package/templates/vue-project/src/assets/images/Effects.png +0 -0
  46. package/templates/vue-project/src/assets/images/bg.png +0 -0
  47. package/templates/vue-project/src/assets/images/erCode.png +0 -0
  48. package/templates/vue-project/src/assets/images/header-bg.png +0 -0
  49. package/templates/vue-project/src/assets/images/logo.png +0 -0
  50. package/templates/vue-project/src/assets/scss/common.scss +530 -0
  51. package/templates/vue-project/src/assets/styles/element-overrides.css +53 -0
  52. package/templates/vue-project/src/assets/styles/reset.css +186 -0
  53. package/templates/vue-project/src/assets/styles/theme.css +100 -0
  54. package/templates/vue-project/src/components/BarChart.vue +238 -0
  55. package/templates/vue-project/src/components/echarts/EChart.vue +140 -0
  56. package/templates/vue-project/src/composables/useTheme.ts +84 -0
  57. package/templates/vue-project/src/main.ts +111 -0
  58. package/templates/vue-project/src/mocks/base.ts +37 -0
  59. package/templates/vue-project/src/mocks/umse.ts +31 -0
  60. package/templates/vue-project/src/router/index.ts +32 -0
  61. package/templates/vue-project/src/shims-vue.d.ts +19 -0
  62. package/templates/vue-project/src/store/index.ts +18 -0
  63. package/templates/vue-project/src/store/modules/user.ts +85 -0
  64. package/templates/vue-project/src/types/DTO/aicebd.d.ts +60 -0
  65. package/templates/vue-project/src/types/DTO/base.d.ts +26 -0
  66. package/templates/vue-project/src/types/DTO/global.d.ts +48 -0
  67. package/templates/vue-project/src/types/VO/teachingLog.d.ts +15 -0
  68. package/templates/vue-project/src/types/auto-imports.d.ts +73 -0
  69. package/templates/vue-project/src/types/components.d.ts +17 -0
  70. package/templates/vue-project/src/types/element-plus.d.ts +15 -0
  71. package/templates/vue-project/src/types/js-cookie.d.ts +1 -0
  72. package/templates/vue-project/src/types/unocss.d.ts +2 -0
  73. package/templates/vue-project/src/types/vite-plugins.d.ts +3 -0
  74. package/templates/vue-project/src/types/vue-router.d.ts +1 -0
  75. package/templates/vue-project/src/types/window-config.d.ts +12 -0
  76. package/templates/vue-project/src/utils/com-methods.ts +307 -0
  77. package/templates/vue-project/src/utils/echarts.ts +111 -0
  78. package/templates/vue-project/src/utils/number.ts +99 -0
  79. package/templates/vue-project/src/utils/rem.ts +82 -0
  80. package/templates/vue-project/src/utils/responsive.ts +103 -0
  81. package/templates/vue-project/src/utils/time.ts +314 -0
  82. package/templates/vue-project/src/utils/tracker.ts +527 -0
  83. package/templates/vue-project/src/utils/validators.ts +85 -0
  84. package/templates/vue-project/src/utils/window.ts +132 -0
  85. package/templates/vue-project/src/views/home/Home.vue +60 -0
  86. package/templates/vue-project/src/views/home/composables/useUserAuth.ts +13 -0
  87. package/templates/vue-project/src/views/teachingLog/TeachingLog.vue +40 -0
  88. package/templates/vue-project/src/views/teachingLog/__tests__/TeachingEffect.test.ts +96 -0
  89. package/templates/vue-project/src/views/teachingLog/__tests__/TeachingHighlight.test.ts +66 -0
  90. package/templates/vue-project/src/views/teachingLog/__tests__/TeachingLog.test.ts +34 -0
  91. package/templates/vue-project/src/views/teachingLog/components/TeachingEffect.vue +458 -0
  92. package/templates/vue-project/src/views/teachingLog/components/TeachingHighlight.vue +181 -0
  93. package/templates/vue-project/src/views/teachingLog/composables/useEffectTooltip.ts +88 -0
  94. package/templates/vue-project/src/views/teachingLog/composables/useEffectTrendChart.ts +160 -0
  95. package/templates/vue-project/tests/setup.ts +27 -0
  96. package/templates/vue-project/tsconfig.json +24 -0
  97. package/templates/vue-project/tsconfig.node.json +41 -0
  98. package/templates/vue-project/uno.config.ts +84 -0
  99. package/templates/vue-project/vite.config.ts +216 -0
  100. package/templates/vue-project/vue3_ai_prompt.md +652 -0
  101. package/templates/vue-project/vue3_ai_prompt_basic.md +722 -0
  102. package/templates/vue-project/vue3_ai_prompt_full.md +1021 -0
  103. package/templates/vue-project/vue3_ai_prompt_unocss.md +768 -0
  104. package/templates/vue-project//345/267/245/347/250/213/345/214/226/346/250/241/346/235/277/344/273/213/347/273/215.md +463 -0
@@ -0,0 +1,402 @@
1
+ @font-face {
2
+ font-family: "iconfont"; /* Project id 2708854 */
3
+ src: url("iconfont.woff2?t=1704441749084") format("woff2"),
4
+ url("iconfont.woff?t=1704441749084") format("woff"),
5
+ url("iconfont.ttf?t=1704441749084") format("truetype");
6
+ }
7
+
8
+ .iconfont {
9
+ font-family: "iconfont" !important;
10
+ font-size: 16px;
11
+ font-style: normal;
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+
16
+ .icon-kaishi:before {
17
+ content: "\e70b";
18
+ }
19
+
20
+ .icon-xiake:before {
21
+ content: "\e70c";
22
+ }
23
+
24
+ .icon-shangke1:before {
25
+ content: "\e70d";
26
+ }
27
+
28
+ .icon-jieshu:before {
29
+ content: "\e70e";
30
+ }
31
+
32
+ .icon-minganci:before {
33
+ content: "\e6d2";
34
+ }
35
+
36
+ .icon-floor-building-full:before {
37
+ content: "\e9e7";
38
+ }
39
+
40
+ .icon-fanhuishangyiji1:before {
41
+ content: "\e70a";
42
+ }
43
+
44
+ .icon-yuyin:before {
45
+ content: "\e702";
46
+ }
47
+
48
+ .icon-kejian:before {
49
+ content: "\e703";
50
+ }
51
+
52
+ .icon-fangda:before {
53
+ content: "\e704";
54
+ }
55
+
56
+ .icon-zuowei:before {
57
+ content: "\e705";
58
+ }
59
+
60
+ .icon-ciyun:before {
61
+ content: "\e706";
62
+ }
63
+
64
+ .icon-shijian:before {
65
+ content: "\e707";
66
+ }
67
+
68
+ .icon-kaoqin:before {
69
+ content: "\e708";
70
+ }
71
+
72
+ .icon-renshu:before {
73
+ content: "\e709";
74
+ }
75
+
76
+ .icon-AIdudao:before {
77
+ content: "\e701";
78
+ }
79
+
80
+ .icon-huamianfangda:before {
81
+ content: "\e6fb";
82
+ }
83
+
84
+ .icon-sousuo:before {
85
+ content: "\e6ff";
86
+ }
87
+
88
+ .icon-huamiansuoxiao:before {
89
+ content: "\e700";
90
+ }
91
+
92
+ .icon-kaishiluzhidianji:before {
93
+ content: "\e6fc";
94
+ }
95
+
96
+ .icon-shangkezhong:before {
97
+ content: "\e6fd";
98
+ }
99
+
100
+ .icon-guankanluxiang:before {
101
+ content: "\e6fe";
102
+ }
103
+
104
+ .icon-jietu:before {
105
+ content: "\e6f7";
106
+ }
107
+
108
+ .icon-guanbiluxiang:before {
109
+ content: "\e6f8";
110
+ }
111
+
112
+ .icon-quanping:before {
113
+ content: "\e6f9";
114
+ }
115
+
116
+ .icon-kaishiluzhi:before {
117
+ content: "\e6fa";
118
+ }
119
+
120
+ .icon-cipan:before {
121
+ content: "\e6f6";
122
+ }
123
+
124
+ .icon-xitong:before {
125
+ content: "\e6f4";
126
+ }
127
+
128
+ .icon-CPU1:before {
129
+ content: "\e6f5";
130
+ }
131
+
132
+ .icon-zhongkongmianban1:before {
133
+ content: "\e6ed";
134
+ }
135
+
136
+ .icon-jiemaqi1:before {
137
+ content: "\e6ee";
138
+ }
139
+
140
+ .icon-diannaozhuji:before {
141
+ content: "\e6f3";
142
+ }
143
+
144
+ .icon-lubohuamian:before {
145
+ content: "\e6ec";
146
+ }
147
+
148
+ .icon-huanjingcaiji:before {
149
+ content: "\e6ef";
150
+ }
151
+
152
+ .icon-zhuji:before {
153
+ content: "\e6f0";
154
+ }
155
+
156
+ .icon-shexiangtou:before {
157
+ content: "\e6f1";
158
+ }
159
+
160
+ .icon-bianmaqi1:before {
161
+ content: "\e6f2";
162
+ }
163
+
164
+ .icon-jinjiao:before {
165
+ content: "\e6e6";
166
+ }
167
+
168
+ .icon-zuo:before {
169
+ content: "\e6e7";
170
+ }
171
+
172
+ .icon-xia:before {
173
+ content: "\e6e8";
174
+ }
175
+
176
+ .icon-shang:before {
177
+ content: "\e6e9";
178
+ }
179
+
180
+ .icon-yuanjiao:before {
181
+ content: "\e6ea";
182
+ }
183
+
184
+ .icon-you:before {
185
+ content: "\e6eb";
186
+ }
187
+
188
+ .icon-fanhuishangyiji:before {
189
+ content: "\e600";
190
+ }
191
+
192
+ .icon-screenshot:before {
193
+ content: "\e666";
194
+ }
195
+
196
+ .icon-luzhizhonghong:before {
197
+ content: "\e665";
198
+ }
199
+
200
+ .icon-jiuping:before {
201
+ content: "\e6d9";
202
+ }
203
+
204
+ .icon-luzhi:before {
205
+ content: "\e6b2";
206
+ }
207
+
208
+ .icon-shebeiyichang:before {
209
+ content: "\e6b3";
210
+ }
211
+
212
+ .icon-didian:before {
213
+ content: "\e65f";
214
+ }
215
+
216
+ .icon-renkelaoshi:before {
217
+ content: "\e661";
218
+ }
219
+
220
+ .icon-kecheng3:before {
221
+ content: "\e664";
222
+ }
223
+
224
+ .icon-shangyiye:before {
225
+ content: "\e663";
226
+ }
227
+
228
+ .icon-xiayiye:before {
229
+ content: "\e660";
230
+ }
231
+
232
+ .icon-kecheng2:before {
233
+ content: "\e662";
234
+ }
235
+
236
+ .icon-zhibo:before {
237
+ content: "\e65e";
238
+ }
239
+
240
+ .icon-shangke:before {
241
+ content: "\e65d";
242
+ }
243
+
244
+ .icon-jiemaqi:before {
245
+ content: "\e65c";
246
+ }
247
+
248
+ .icon-ziyuanguanli-6ping1:before {
249
+ content: "\e65b";
250
+ }
251
+
252
+ .icon-huanjingcaijishebei:before {
253
+ content: "\e646";
254
+ }
255
+
256
+ .icon-bianmaqi:before {
257
+ content: "\e65a";
258
+ }
259
+
260
+ .icon-zhongkongmianban:before {
261
+ content: "\e644";
262
+ }
263
+
264
+ .icon-shebeiyujing1:before {
265
+ content: "\e640";
266
+ }
267
+
268
+ .icon-shijian1:before {
269
+ content: "\e641";
270
+ }
271
+
272
+ .icon-zhiborenwu1:before {
273
+ content: "\e642";
274
+ }
275
+
276
+ .icon-zhuangtai1:before {
277
+ content: "\e648";
278
+ }
279
+
280
+ .icon-jiaoshi1:before {
281
+ content: "\e64f";
282
+ }
283
+
284
+ .icon-kecheng1:before {
285
+ content: "\e650";
286
+ }
287
+
288
+ .icon-jiaoshijianguan1:before {
289
+ content: "\e651";
290
+ }
291
+
292
+ .icon-shebei1:before {
293
+ content: "\e652";
294
+ }
295
+
296
+ .icon-jiaoshixunke1:before {
297
+ content: "\e653";
298
+ }
299
+
300
+ .icon-neicun1:before {
301
+ content: "\e654";
302
+ }
303
+
304
+ .icon-shebeiguanli1:before {
305
+ content: "\e655";
306
+ }
307
+
308
+ .icon-shebeijiance1:before {
309
+ content: "\e656";
310
+ }
311
+
312
+ .icon-jiaoshiguanli1:before {
313
+ content: "\e657";
314
+ }
315
+
316
+ .icon-jiaoxuelou:before {
317
+ content: "\e658";
318
+ }
319
+
320
+ .icon-luborenwu1:before {
321
+ content: "\e659";
322
+ }
323
+
324
+ .icon-zhongkongzhuji:before {
325
+ content: "\e64c";
326
+ }
327
+
328
+ .icon-lubozhuji:before {
329
+ content: "\e64d";
330
+ }
331
+
332
+ .icon-gaoqingshexiangji:before {
333
+ content: "\e64e";
334
+ }
335
+
336
+ .icon-ziyuanguanli-fanhui:before {
337
+ content: "\e64b";
338
+ }
339
+
340
+ .icon-ziyuanguanli-4ping:before {
341
+ content: "\e649";
342
+ }
343
+
344
+ .icon-ziyuanguanli-1ping:before {
345
+ content: "\e64a";
346
+ }
347
+
348
+ .icon-shangchuanfujian:before {
349
+ content: "\e627";
350
+ }
351
+
352
+ .icon-ziyuanguanli-sousuo:before {
353
+ content: "\e61b";
354
+ }
355
+
356
+ .icon-shuoming:before {
357
+ content: "\e602";
358
+ }
359
+
360
+ .icon-guanbi:before {
361
+ content: "\e676";
362
+ }
363
+
364
+ .icon-guanbi1:before {
365
+ content: "\e631";
366
+ }
367
+
368
+ .icon-bangzhu:before {
369
+ content: "\e605";
370
+ }
371
+
372
+ .icon-fuwuqijiance:before {
373
+ content: "\e637";
374
+ }
375
+
376
+ .icon-fuwuqi:before {
377
+ content: "\e638";
378
+ }
379
+
380
+ .icon-jiaoshiguanli:before {
381
+ content: "\e63d";
382
+ }
383
+
384
+ .icon-zhuangtai:before {
385
+ content: "\e63e";
386
+ }
387
+
388
+ .icon-shebeiguzhang:before {
389
+ content: "\e63f";
390
+ }
391
+
392
+ .icon-kecheng:before {
393
+ content: "\e643";
394
+ }
395
+
396
+ .icon-CPU:before {
397
+ content: "\e645";
398
+ }
399
+
400
+ .icon-luborenwu2:before {
401
+ content: "\e626";
402
+ }