npmapps 1.0.21 → 1.0.23

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 (105) hide show
  1. package/app/Wscats.vue-1.0.26.vsix +0 -0
  2. package/app/febean.vue-format-0.1.8.vsix +0 -0
  3. package/app/wujie-vue3-child/.claude/settings.local.json +8 -0
  4. package/app/wujie-vue3-child/.vscode/extensions.json +3 -0
  5. package/app/wujie-vue3-child/PROJECT_MEMORY.md +427 -0
  6. package/app/wujie-vue3-child/README.md +5 -0
  7. package/app/wujie-vue3-child/index.html +13 -0
  8. package/app/wujie-vue3-child/package-lock.json +5744 -0
  9. package/app/wujie-vue3-child/package.json +28 -0
  10. package/app/wujie-vue3-child/public/vite.svg +1 -0
  11. package/app/wujie-vue3-child/src/App.vue +130 -0
  12. package/app/wujie-vue3-child/src/assets/vue.svg +1 -0
  13. package/app/wujie-vue3-child/src/components/HelloWorld.vue +43 -0
  14. package/app/wujie-vue3-child/src/components/tags-view.vue +193 -0
  15. package/app/wujie-vue3-child/src/components/tags-view1.vue +131 -0
  16. package/app/wujie-vue3-child/src/hooks/useClickOutside.js +11 -0
  17. package/app/wujie-vue3-child/src/hooks/useTableDragSort.js +28 -0
  18. package/app/wujie-vue3-child/src/main.js +15 -0
  19. package/app/wujie-vue3-child/src/router/index.js +104 -0
  20. package/app/wujie-vue3-child/src/store/tagsViewStroe.js +34 -0
  21. package/app/wujie-vue3-child/src/style.css +4 -0
  22. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/README.md +836 -0
  23. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/REFLEX_EXAMPLES.md +728 -0
  24. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.jsx +687 -0
  25. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.module.scss +560 -0
  26. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.jsx +570 -0
  27. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.module.scss +330 -0
  28. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.jsx +378 -0
  29. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.module.scss +228 -0
  30. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.jsx +399 -0
  31. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.module.scss +252 -0
  32. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.jsx +585 -0
  33. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.module.scss +331 -0
  34. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.jsx +392 -0
  35. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.module.scss +39 -0
  36. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/README.md +248 -0
  37. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/SelectorTrigger.jsx +194 -0
  38. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/index.jsx +1459 -0
  39. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/mockData.js +301 -0
  40. package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/dialogueSegment/index.jsx +28 -4
  41. package/app/wujie-vue3-child/src/views/aiCoach/index.jsx +32 -0
  42. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.jsx +121 -0
  43. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.module.scss +76 -0
  44. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/DonutChart/index.jsx +104 -0
  45. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.jsx +75 -0
  46. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.module.scss +12 -0
  47. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.jsx +62 -0
  48. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.module.scss +43 -0
  49. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.jsx +29 -0
  50. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.module.scss +5 -0
  51. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.jsx +58 -0
  52. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.module.scss +85 -0
  53. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.jsx +92 -0
  54. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.module.scss +56 -0
  55. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.jsx +40 -0
  56. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.module.scss +53 -0
  57. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsDonut.jsx +106 -0
  58. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsRankBar.jsx +132 -0
  59. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.jsx +176 -0
  60. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.module.scss +96 -0
  61. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.jsx +162 -0
  62. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.module.scss +16 -0
  63. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.jsx +29 -0
  64. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.module.scss +25 -0
  65. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.jsx +106 -0
  66. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.module.scss +164 -0
  67. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.jsx +182 -0
  68. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.module.scss +203 -0
  69. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.jsx +145 -0
  70. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.module.scss +126 -0
  71. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.jsx +67 -0
  72. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.module.scss +105 -0
  73. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.jsx +81 -0
  74. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.module.scss +47 -0
  75. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.jsx +64 -0
  76. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.module.scss +85 -0
  77. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.jsx +39 -0
  78. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.module.scss +44 -0
  79. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.jsx +83 -0
  80. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.module.scss +101 -0
  81. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.jsx +50 -0
  82. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.module.scss +25 -0
  83. package/app/wujie-vue3-child/src/views/child-to-parent.vue +117 -0
  84. package/app/wujie-vue3-child/src/views/home.vue +53 -0
  85. package/app/wujie-vue3-child/src/views/jsx/btnSelect/btnSelect.vue +169 -0
  86. package/app/wujie-vue3-child/src/views/jsx/btnSelect/index.vue +69 -0
  87. package/app/wujie-vue3-child/src/views/jsx/com.vue +44 -0
  88. package/app/wujie-vue3-child/src/views/jsx/dialog.jsx +66 -0
  89. package/app/wujie-vue3-child/src/views/jsx/index.vue +72 -0
  90. package/app/wujie-vue3-child/src/views/jsx/props.vue +33 -0
  91. package/app/wujie-vue3-child/src/views/parent-to-child.vue +225 -0
  92. package/app/wujie-vue3-child/src/views/phone-code.vue +318 -0
  93. package/app/wujie-vue3-child/src/views/router-jump.vue +123 -0
  94. package/app/wujie-vue3-child/src/views/test.vue +192 -0
  95. package/app/wujie-vue3-child/vite.config.js +15 -0
  96. package/package.json +1 -1
  97. package/app/aiCoach/index.jsx +0 -20
  98. package/npmapps-1.0.20.tgz +0 -0
  99. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/collapseExpand/index.jsx +0 -0
  100. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/collapseExpand/index.module.scss +0 -0
  101. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/dialogueSegment/index.module.scss +0 -0
  102. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/scriptTable/index.jsx +0 -0
  103. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/scriptTable/index.module.scss +0 -0
  104. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/scriptTable/inputColumn/index.jsx +0 -0
  105. /package/app/{aiCoach → wujie-vue3-child/src/views/aiCoach}/scriptTable/inputColumn/index.module.scss +0 -0
@@ -0,0 +1,252 @@
1
+ // 通用选项选择器样式(基于 PopoverSelector)
2
+
3
+ // 输入框触发器
4
+ .inputTrigger {
5
+ display: flex;
6
+ align-items: center;
7
+ width: 100%;
8
+ min-height: 32px;
9
+ padding: 1px 11px;
10
+ background: #fff;
11
+ border: 1px solid #dcdfe6;
12
+ border-radius: 4px;
13
+ cursor: pointer;
14
+ transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
15
+ outline: none;
16
+ box-sizing: border-box;
17
+
18
+ &:hover {
19
+ border-color: #c0c4cc;
20
+ }
21
+
22
+ &.focused {
23
+ border-color: #409eff;
24
+ }
25
+
26
+ &.disabled {
27
+ background-color: #f5f7fa;
28
+ border-color: #e4e7ed;
29
+ color: #c0c4cc;
30
+ cursor: not-allowed;
31
+ }
32
+ }
33
+
34
+ // 按钮触发器
35
+ .buttonTrigger {
36
+ width: 100%;
37
+ }
38
+
39
+ // 按钮内部容器
40
+ .buttonInner {
41
+ display: flex;
42
+ align-items: center;
43
+ justify-content: space-between;
44
+ width: 100%;
45
+ gap: 8px;
46
+ }
47
+
48
+ // 内容区域
49
+ .content {
50
+ flex: 1;
51
+ display: flex;
52
+ align-items: center;
53
+ min-width: 0;
54
+ min-height: 30px;
55
+ padding: 2px 0;
56
+ text-align: left;
57
+ overflow: hidden;
58
+ }
59
+
60
+ // Tags 包装器(多选输入框模式)
61
+ .tagsWrapper {
62
+ display: flex;
63
+ flex-wrap: wrap;
64
+ gap: 4px;
65
+ flex: 1;
66
+ min-width: 0;
67
+ }
68
+
69
+ // 单个 tag
70
+ .tag {
71
+ max-width: 150px;
72
+
73
+ :global(.el-tag__content) {
74
+ overflow: hidden;
75
+ text-overflow: ellipsis;
76
+ white-space: nowrap;
77
+ }
78
+ }
79
+
80
+ // 图标区域
81
+ .icons {
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 4px;
85
+ margin-left: 8px;
86
+ flex-shrink: 0;
87
+ }
88
+
89
+ // 清除图标
90
+ .clearIcon {
91
+ font-size: 14px;
92
+ color: #c0c4cc;
93
+ cursor: pointer;
94
+ transition: color 0.2s;
95
+
96
+ &:hover {
97
+ color: #909399;
98
+ }
99
+ }
100
+
101
+ // 下拉箭头
102
+ .arrowIcon {
103
+ font-size: 14px;
104
+ color: #c0c4cc;
105
+ transition: transform 0.3s;
106
+
107
+ &.reverse {
108
+ transform: rotate(180deg);
109
+ }
110
+ }
111
+
112
+ // 前置标签
113
+ .label {
114
+ color: #606266;
115
+ font-size: 14px;
116
+ margin-right: 4px;
117
+ flex-shrink: 0;
118
+ }
119
+
120
+ // 占位符
121
+ .placeholder {
122
+ color: #c0c4cc;
123
+ font-size: 14px;
124
+ }
125
+
126
+ // 文本
127
+ .text {
128
+ color: #606266;
129
+ font-size: 14px;
130
+ overflow: hidden;
131
+ text-overflow: ellipsis;
132
+ white-space: nowrap;
133
+ }
134
+
135
+ // 文字包装器
136
+ .textWrapper {
137
+ display: flex;
138
+ align-items: center;
139
+ gap: 8px;
140
+ }
141
+
142
+ // 数量徽章
143
+ .countBadge {
144
+ display: inline-flex;
145
+ align-items: center;
146
+ justify-content: center;
147
+ min-width: 20px;
148
+ height: 20px;
149
+ padding: 0 4px;
150
+ background-color: #ecf5ff;
151
+ color: #409eff;
152
+ font-size: 12px;
153
+ font-weight: 500;
154
+ border-radius: 10px;
155
+ white-space: nowrap;
156
+ flex-shrink: 0;
157
+ }
158
+
159
+ // 悬浮窗内容
160
+ .dropdownContent {
161
+ display: flex;
162
+ flex-direction: column;
163
+ height: 100%;
164
+ max-height: inherit;
165
+ overflow: hidden;
166
+ }
167
+
168
+ // 搜索框
169
+ .searchBox {
170
+ padding: 8px;
171
+ border-bottom: 1px solid #e4e7ed;
172
+ background: #fff;
173
+ }
174
+
175
+ // 选项列表
176
+ .optionsList {
177
+ flex: 1;
178
+ overflow-y: auto;
179
+ padding: 4px 0;
180
+
181
+ // 自定义滚动条
182
+ &::-webkit-scrollbar {
183
+ width: 6px;
184
+ }
185
+
186
+ &::-webkit-scrollbar-track {
187
+ background: #f1f1f1;
188
+ border-radius: 3px;
189
+ }
190
+
191
+ &::-webkit-scrollbar-thumb {
192
+ background: #c1c1c1;
193
+ border-radius: 3px;
194
+
195
+ &:hover {
196
+ background: #a8a8a8;
197
+ }
198
+ }
199
+ }
200
+
201
+ // 选项项
202
+ .optionItem {
203
+ display: flex;
204
+ align-items: center;
205
+ justify-content: space-between;
206
+ padding: 0 12px;
207
+ height: 34px;
208
+ cursor: pointer;
209
+ transition: background-color 0.2s;
210
+
211
+ &:hover {
212
+ background-color: #f5f7fa;
213
+ }
214
+
215
+ &.selected {
216
+ background-color: #ecf5ff;
217
+ color: #409eff;
218
+
219
+ .optionLabel {
220
+ color: #409eff;
221
+ font-weight: 500;
222
+ }
223
+ }
224
+ }
225
+
226
+ // 勾选图标
227
+ .checkIcon {
228
+ font-size: 16px;
229
+ color: #409eff;
230
+ flex-shrink: 0;
231
+ margin-left: 8px;
232
+ }
233
+
234
+ // 选项标签
235
+ .optionLabel {
236
+ flex: 1;
237
+ font-size: 14px;
238
+ color: #606266;
239
+ overflow: hidden;
240
+ text-overflow: ellipsis;
241
+ white-space: nowrap;
242
+ }
243
+
244
+ // 空状态
245
+ .empty {
246
+ display: flex;
247
+ align-items: center;
248
+ justify-content: center;
249
+ padding: 32px 16px;
250
+ color: #909399;
251
+ font-size: 14px;
252
+ }