widget.qw 1.0.83 → 1.0.85

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 (108) hide show
  1. package/.env.development +10 -10
  2. package/.env.production +8 -8
  3. package/README.md +75 -75
  4. package/build/style.css +521 -471
  5. package/build/widget.qw.es.js +253 -84
  6. package/build/widget.qw.umd.js +252 -83
  7. package/index.html +17 -17
  8. package/package.json +47 -47
  9. package/src/App.vue +26 -26
  10. package/src/api/index.js +173 -165
  11. package/src/components/AuditBar.vue +396 -396
  12. package/src/components/BillCard.vue +164 -164
  13. package/src/components/CascaderPicker.vue +132 -132
  14. package/src/components/CascaderPop.vue +375 -371
  15. package/src/components/CheckGroup.vue +113 -113
  16. package/src/components/DatetimeDropdown.vue +62 -0
  17. package/src/components/{DatetimePicker/index.vue → DatetimePicker.vue} +124 -124
  18. package/src/components/DayDropdown.vue +56 -56
  19. package/src/components/FilePicker.vue +169 -169
  20. package/src/components/HeadBar.vue +130 -0
  21. package/src/components/Input.vue +80 -80
  22. package/src/components/MonthDropdown.vue +51 -51
  23. package/src/components/MultiPicker.vue +123 -123
  24. package/src/components/ObjsEditor.vue +334 -334
  25. package/src/components/SecretNotify.js +5 -5
  26. package/src/components/Sheet.vue +92 -92
  27. package/src/components/SingleApiPicker.vue +108 -108
  28. package/src/components/SinglePicker.vue +102 -102
  29. package/src/components/SingleUserSelector.vue +425 -425
  30. package/src/components/Switch.vue +64 -64
  31. package/src/components/TreePicker.vue +113 -113
  32. package/src/components/UserPicker.vue +106 -106
  33. package/src/components/UserProfile.vue +129 -129
  34. package/src/components/UsersPicker.vue +118 -118
  35. package/src/components/YearDropdown.vue +59 -59
  36. package/src/components/data_selector.vue +303 -303
  37. package/src/components/image_picker.vue +123 -123
  38. package/src/components/images_picker.vue +195 -195
  39. package/src/components/index.js +172 -162
  40. package/src/components/mult_list_selector.vue +155 -155
  41. package/src/components/subdepartment_selector.vue +481 -481
  42. package/src/components/user_selector.vue +639 -639
  43. package/src/components/widget/DataPop.vue +95 -95
  44. package/src/components/{DatetimePicker → widget}/DatetimePop.vue +342 -342
  45. package/src/components/widget/TreePop.vue +88 -88
  46. package/src/components/widget/UserPop.vue +347 -347
  47. package/src/main.js +117 -117
  48. package/src/router/index.ts +183 -173
  49. package/src/util/array_util.js +32 -32
  50. package/src/util/auth_util.js +72 -72
  51. package/src/util/bool_util.js +5 -5
  52. package/src/util/bus.js +1 -1
  53. package/src/util/cache_util.js +18 -18
  54. package/src/util/errer_code.js +6 -6
  55. package/src/util/eval_util.js +19 -19
  56. package/src/util/icon_util.js +36 -36
  57. package/src/util/image_util.js +27 -27
  58. package/src/util/index.js +57 -57
  59. package/src/util/num_util.js +70 -70
  60. package/src/util/obj_util.js +28 -28
  61. package/src/util/request.js +73 -73
  62. package/src/util/request_json.js +71 -71
  63. package/src/util/request_json_mute.js +65 -65
  64. package/src/util/request_upload.js +79 -79
  65. package/src/util/route_util.js +31 -31
  66. package/src/util/str_util.js +143 -143
  67. package/src/util/time_util.js +406 -406
  68. package/src/util/toast_util.js +24 -24
  69. package/src/util/tree_util.js +153 -153
  70. package/src/util/uuid_util.js +9 -9
  71. package/src/util/validate.js +182 -182
  72. package/src/util/vue_filter.js +223 -223
  73. package/src/views/auditbar/index.vue +78 -78
  74. package/src/views/billcard/index.vue +48 -48
  75. package/src/views/cascaderpicker/index.vue +0 -0
  76. package/src/views/cascaderpicker/userpicker.vue +183 -0
  77. package/src/views/cascaderpop/index.vue +90 -90
  78. package/src/views/checkgroup/index.vue +35 -35
  79. package/src/views/dataSelector/index.vue +48 -48
  80. package/src/views/datetimedropdown/index.vue +34 -0
  81. package/src/views/datetimepicker/index.vue +34 -34
  82. package/src/views/daydropdown/index.vue +31 -31
  83. package/src/views/filepicker/index.vue +32 -32
  84. package/src/views/headbar/index.vue +28 -0
  85. package/src/views/home/index.vue +0 -0
  86. package/src/views/imagepicker/index.vue +31 -31
  87. package/src/views/imagespicker/index.vue +37 -37
  88. package/src/views/input/index.vue +35 -35
  89. package/src/views/monthdropdown/index.vue +31 -31
  90. package/src/views/multListSelector/index.vue +61 -61
  91. package/src/views/multipicker/index.vue +36 -36
  92. package/src/views/objseditor/index.vue +277 -277
  93. package/src/views/productSelector/index.vue +35 -35
  94. package/src/views/projectpicker/index.vue +41 -41
  95. package/src/views/secretnotify/index.vue +27 -27
  96. package/src/views/sheet/index.vue +45 -45
  97. package/src/views/singlepicker/index.vue +35 -35
  98. package/src/views/subdepartmentSelector/index.vue +40 -40
  99. package/src/views/switch/index.vue +34 -34
  100. package/src/views/treepicker/index.vue +41 -41
  101. package/src/views/userSelector/index.vue +54 -54
  102. package/src/views/userSelectorNew/index.vue +45 -45
  103. package/src/views/userpicker/index.vue +43 -43
  104. package/src/views/userprofile/index.vue +30 -30
  105. package/src/views/userspicker/index.vue +43 -43
  106. package/src/views/yeardropdown/index.vue +32 -32
  107. package/src/vm/index.js +1 -1
  108. package/vite.config.ts +122 -122
package/build/style.css CHANGED
@@ -1,838 +1,888 @@
1
- @charset "UTF-8";.widget[data-v-4ca3a098] {
1
+ @charset "UTF-8";
2
+ .enterprise-header[data-v-14acf94f] {
3
+ display: flex;
4
+ align-items: center;
5
+ justify-content: center;
6
+ height: 48px;
7
+ background-color: #2d8cf0; /* 企业微信风格蓝色 */
8
+ background-color: #fff;
9
+ color: white;
10
+ color: #000;
11
+ position: relative;
12
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
13
+ margin-bottom: 4px;
14
+ }
15
+ .header-title[data-v-14acf94f] {
16
+ font-size: 14px;
17
+ font-weight: 500;
18
+ white-space: nowrap;
19
+ overflow: hidden;
20
+ text-overflow: ellipsis;
21
+ max-width: 70%;
22
+ }
23
+ .header-btn[data-v-14acf94f] {
24
+ position: absolute;
25
+ width: 48px;
26
+ height: 48px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: center;
30
+ background: transparent;
31
+ border: none;
32
+ color: white;
33
+ color: #000;
34
+ font-size: 20px;
35
+ cursor: pointer;
36
+ padding: 0;
37
+ }
38
+ .header-btn[data-v-14acf94f]:disabled {
39
+ opacity: 0.5;
40
+ cursor: not-allowed;
41
+ }
42
+ .back-btn[data-v-14acf94f] {
43
+ left: 0;
44
+ }
45
+ .home-btn[data-v-14acf94f] {
46
+ right: 0;
47
+ }
48
+
49
+
50
+ .widget[data-v-1e9a1a8a] {
2
51
  text-align: center;
3
52
  padding: 15px 15px;
4
53
  }
5
- .memo[data-v-4ca3a098] {
54
+ .memo[data-v-1e9a1a8a] {
6
55
  margin-bottom: 15px;
7
56
  }
8
- .refuse-btn[data-v-4ca3a098] {
57
+ .refuse-btn[data-v-1e9a1a8a] {
9
58
  width: 120px;
10
59
  margin-right: 15px;
11
60
  }
12
- .pass-btn[data-v-4ca3a098] {
61
+ .pass-btn[data-v-1e9a1a8a] {
13
62
  width: 120px;
14
63
  }
15
- .apply-btn[data-v-4ca3a098] {
64
+ .apply-btn[data-v-1e9a1a8a] {
16
65
  width: 60vw;
17
66
  }
18
- .task-list[data-v-4ca3a098] {
67
+ .task-list[data-v-1e9a1a8a] {
19
68
  margin-top: 15px;
20
69
  }
21
- .task-title[data-v-4ca3a098] {
70
+ .task-title[data-v-1e9a1a8a] {
22
71
  font-size: 14px;
23
72
  font-weight: bold;
24
73
  color: #333;
25
74
  text-align: left;
26
75
  }
27
- .task-user[data-v-4ca3a098] {
76
+ .task-user[data-v-1e9a1a8a] {
28
77
  font-size: 13px;
29
78
  color: #666;
30
79
  text-align: left;
31
80
  margin-top: 5px;
32
81
  }
33
- .audit-title[data-v-4ca3a098] {
82
+ .audit-title[data-v-1e9a1a8a] {
34
83
  padding: 25px 15px 0 15px;
35
84
  font-size: 16px;
36
85
  font-weight: bold;
37
86
  color: #666;
38
87
  text-align: left;
39
88
  }
40
- :root:root {
89
+ :root:root {
41
90
  --van-popover-action-width: 70vw;
42
- }
43
- [data-v-11282908] .label {
91
+ }
92
+ [data-v-ec78c334] .label {
44
93
  color: #000 !important;
45
94
  }
46
- [data-v-11282908] .van-field__control:disabled {
95
+ [data-v-ec78c334] .van-field__control:disabled {
47
96
  color: #000 !important;
48
97
  cursor: not-allowed;
49
98
  opacity: 1;
50
99
  -webkit-text-fill-color: #000;
51
- }[data-v-6786fbdf] .label {
100
+ }[data-v-24e62c3a] .label {
52
101
  color: #000 !important;
53
102
  }
54
- [data-v-6786fbdf] .van-field__control:disabled {
103
+ [data-v-24e62c3a] .van-field__control:disabled {
55
104
  color: #000 !important;
56
105
  cursor: not-allowed;
57
106
  opacity: 1;
58
107
  -webkit-text-fill-color: #000;
59
108
  }
60
- .popup-box[data-v-fa22ab88] {
61
- min-height: 20vh;
62
- max-height: 40vh;
109
+ .popup-box[data-v-10d79413] {
110
+ min-height: 20vh;
111
+ max-height: 40vh;
63
112
  overflow-y: auto;
64
- .checkbox-list[data-v-fa22ab88] {
113
+ .checkbox-list[data-v-10d79413] {
65
114
  padding: 15px 25px;
66
- [data-v-fa22ab88] .van-checkbox__label {
67
- flex: 1;
115
+ [data-v-10d79413] .van-checkbox__label {
116
+ flex: 1;
68
117
  text-align: right;
69
118
  }
70
119
  }
71
120
  }
72
- .select-all-container[data-v-fa22ab88] {
73
- font-size: 14px;
74
- padding: 15px 25px 0 15px;
75
- margin: 10px 0;
76
- display: flex;
77
- justify-content: flex-end;
121
+ .select-all-container[data-v-10d79413] {
122
+ font-size: 14px;
123
+ padding: 15px 25px 0 15px;
124
+ margin: 10px 0;
125
+ display: flex;
126
+ justify-content: flex-end;
78
127
  align-items: center;
79
128
  }
80
- .select-all-container .van-checkbox[data-v-fa22ab88] {
129
+ .select-all-container .van-checkbox[data-v-10d79413] {
81
130
  margin-left: auto;
82
- }
83
-
131
+ }
132
+
84
133
  /* 新增:调整方形复选框的边距 */
85
- .van-checkbox--square[data-v-fa22ab88] {
134
+ .van-checkbox--square[data-v-10d79413] {
86
135
  margin-left: 8px;
87
- }
136
+ }
88
137
 
89
- .data-item[data-v-3a55339a]{
90
- margin: 0 8px 8px 0;
138
+ .data-item[data-v-95e8cb3c]{
139
+ margin: 0 8px 8px 0;
91
140
  padding: 2px 5px;
92
- }
93
- [data-v-a66fb17e] .label {
141
+ }
142
+ [data-v-7f5a06de] .label {
94
143
  color: #000 !important;
95
144
  }
96
- [data-v-a66fb17e] .van-field__control:disabled {
145
+ [data-v-7f5a06de] .van-field__control:disabled {
97
146
  color: #000 !important;
98
147
  cursor: not-allowed;
99
148
  opacity: 1;
100
149
  -webkit-text-fill-color: #000;
101
150
  }
102
- .popup-style[data-v-3aa36f2a] {
151
+ .popup-style[data-v-8faf288e] {
103
152
  height: 21.25rem;
104
153
  }
105
- .showMultipleButton[data-v-3aa36f2a] {
154
+ .showMultipleButton[data-v-8faf288e] {
106
155
  padding-bottom: 0;
107
156
  }
108
- .showMultipleButton .van-button[data-v-3aa36f2a] {
157
+ .showMultipleButton .van-button[data-v-8faf288e] {
109
158
  border: 0;
110
159
  }
111
- .flex-between[data-v-3aa36f2a] {
112
- padding: 10px;
113
- display: flex;
114
- justify-content: space-between;
160
+ .flex-between[data-v-8faf288e] {
161
+ padding: 10px;
162
+ display: flex;
163
+ justify-content: space-between;
115
164
  align-items: center;
116
165
  }
117
- .bold[data-v-3aa36f2a] {
118
- font-weight: bold;
166
+ .bold[data-v-8faf288e] {
167
+ font-weight: bold;
119
168
  color: #444;
120
169
  }
121
- .checkbox-style[data-v-3aa36f2a] {
122
- /* height: 220px; */
123
- height: calc(220px - 30px);
170
+ .checkbox-style[data-v-8faf288e] {
171
+ /* height: 220px; */
172
+ height: calc(220px - 30px);
124
173
  overflow-y: auto;
125
174
  }
126
- .select-all-container[data-v-3aa36f2a] {
127
- font-size: 14px;
128
- padding: 0 16px;
129
- margin: 10px 0;
130
- display: flex;
131
- justify-content: flex-end;
175
+ .select-all-container[data-v-8faf288e] {
176
+ font-size: 14px;
177
+ padding: 0 16px;
178
+ margin: 10px 0;
179
+ display: flex;
180
+ justify-content: flex-end;
132
181
  align-items: center;
133
182
  }
134
- .select-all-container .van-checkbox[data-v-3aa36f2a] {
183
+ .select-all-container .van-checkbox[data-v-8faf288e] {
135
184
  margin-left: auto;
136
- }
137
-
185
+ }
186
+
138
187
  /* 新增:调整方形复选框的边距 */
139
- .van-checkbox--square[data-v-3aa36f2a] {
188
+ .van-checkbox--square[data-v-8faf288e] {
140
189
  margin-left: 8px;
141
- }
142
-
190
+ }
191
+
143
192
  /* // 修改 confirmation-group 和 confirmation-item 的样式 */
144
- .confirmation-group[data-v-0c8dc954] {
145
- padding: 0 16px;
193
+ .confirmation-group[data-v-40a09897] {
194
+ padding: 0 16px;
146
195
  --van-checkbox-disabled-icon-color: black;
147
196
  }
148
- .confirmation-item[data-v-0c8dc954] {
149
- padding: 12px 16px;
150
- margin: 0 -16px;
151
- border-bottom: 1px solid #f5f5f5;
197
+ .confirmation-item[data-v-40a09897] {
198
+ padding: 12px 16px;
199
+ margin: 0 -16px;
200
+ border-bottom: 1px solid #f5f5f5;
152
201
  /* 禁用状态样式 */
153
- }
154
-
202
+ }
203
+
155
204
  /* // 在下方添加媒体查询适配小屏幕 */
156
205
  @media (max-width: 320px) {
157
- .confirmation-item[data-v-0c8dc954] {
158
- padding: 12px 8px;
206
+ .confirmation-item[data-v-40a09897] {
207
+ padding: 12px 8px;
159
208
  margin: 0 -8px;
160
209
  }
161
210
  }
162
- .confirmation-item[data-v-0c8dc954]:last-child {
211
+ .confirmation-item[data-v-40a09897]:last-child {
163
212
  border-bottom: none;
164
- }
165
-
213
+ }
214
+
166
215
  /* 新增样式 */
167
- .confirmation-tips[data-v-0c8dc954] {
168
- padding: 12px 16px;
169
- background: #f0faff;
170
- border-radius: 8px;
171
- margin: 10px 16px;
172
- display: flex;
173
- align-items: center;
174
- color: #1989fa;
175
- font-size: 13px;
216
+ .confirmation-tips[data-v-40a09897] {
217
+ padding: 12px 16px;
218
+ background: #f0faff;
219
+ border-radius: 8px;
220
+ margin: 10px 16px;
221
+ display: flex;
222
+ align-items: center;
223
+ color: #1989fa;
224
+ font-size: 13px;
176
225
  border: 1px solid #d9efff;
177
226
  }
178
- .confirmation-tips .van-icon[data-v-0c8dc954] {
227
+ .confirmation-tips .van-icon[data-v-40a09897] {
179
228
  margin-right: 8px;
180
- }
181
-
229
+ }
230
+
182
231
  /* 新增字体继承样式 */
183
- .confirmation-group[data-v-0c8dc954] {
232
+ .confirmation-group[data-v-40a09897] {
184
233
  font-size: inherit; /* 继承父级字体大小 */
185
234
  }
186
- .option-text[data-v-0c8dc954] {
187
- font-size: 14px; /* 明确指定字体大小 */
188
- line-height: 1.5; /* 保持行高一致 */
235
+ .option-text[data-v-40a09897] {
236
+ font-size: 14px; /* 明确指定字体大小 */
237
+ line-height: 1.5; /* 保持行高一致 */
189
238
  /* color:black; */
190
- }
191
-
239
+ }
240
+
192
241
  /* 适配移动端的字体调整 */
193
242
  @media (max-width: 375px) {
194
- .option-text[data-v-0c8dc954] {
243
+ .option-text[data-v-40a09897] {
195
244
  font-size: 13px;
196
245
  }
197
- }
198
-
246
+ }
247
+
199
248
  /* 新增禁用状态样式 */
200
- .custom-checkbox[data-v-0c8dc954]:disabled .--van-checkbox__icon {
201
- background-color: #f5f5f5;
202
- border-color: #ebedf0;
249
+ .custom-checkbox[data-v-40a09897]:disabled .--van-checkbox__icon {
250
+ background-color: #f5f5f5;
251
+ border-color: #ebedf0;
203
252
  transition: all 0.3s;
204
253
  }
205
- .custom-checkbox[data-v-0c8dc954]:disabled .van-checkbox__icon--checked {
206
- background-color: #1989fa;
207
- border-color: #1989fa;
254
+ .custom-checkbox[data-v-40a09897]:disabled .van-checkbox__icon--checked {
255
+ background-color: #1989fa;
256
+ border-color: #1989fa;
208
257
  opacity: 0.7;
209
258
  }
210
- .van-checkbox--disabled[data-v-0c8dc954] .option-text {
259
+ .van-checkbox--disabled[data-v-40a09897] .option-text {
211
260
  color: #969799;
212
261
  }
213
- .van-checkbox--disabled.van-checkbox--checked[data-v-0c8dc954] .option-text {
214
- color: #1989fa;
262
+ .van-checkbox--disabled.van-checkbox--checked[data-v-40a09897] .option-text {
263
+ color: #1989fa;
215
264
  opacity: 0.8;
216
- }
265
+ }
217
266
 
218
- .department-popup[data-v-122ee6bc] {
219
- width: 100%;
220
- height: 60vh;
267
+ .department-popup[data-v-73eb43f3] {
268
+ width: 100%;
269
+ height: 60vh;
221
270
  border-radius: 16px 16px 0 0;
222
271
  }
223
- .popup-container[data-v-122ee6bc] {
224
- display: flex;
225
- flex-direction: column;
226
- flex: 1;
272
+ .popup-container[data-v-73eb43f3] {
273
+ display: flex;
274
+ flex-direction: column;
275
+ flex: 1;
227
276
  height: 100%;
228
277
  }
229
- .picker-header[data-v-122ee6bc] {
230
- display: flex;
231
- align-items: center;
232
- padding: 12px;
233
- border-bottom: 1px solid #ebedf0;
234
- gap: 8px;
235
- background: #fff;
236
- /* flex-shrink: 0; */
237
- position: sticky;
238
- top: 0;
239
- z-index: 999;
240
- height: 56px;
241
- /* 固定头部高度 */
242
- flex-shrink: 0;
278
+ .picker-header[data-v-73eb43f3] {
279
+ display: flex;
280
+ align-items: center;
281
+ padding: 12px;
282
+ border-bottom: 1px solid #ebedf0;
283
+ gap: 8px;
284
+ background: #fff;
285
+ /* flex-shrink: 0; */
286
+ position: sticky;
287
+ top: 0;
288
+ z-index: 999;
289
+ height: 56px;
290
+ /* 固定头部高度 */
291
+ flex-shrink: 0;
243
292
  /* 防止头部被压缩 */
244
293
  }
245
- .scroll-container[data-v-122ee6bc] {
246
- flex: 1;
247
- height: 0;
248
- overflow-y: auto;
249
- -webkit-overflow-scrolling: touch;
250
- /* height: calc(80vh - 170px); */
251
- /* 计算方式:总高度(80vh) - 头部高度(56px) - 搜索框高度(52px) */
252
- position: relative;
294
+ .scroll-container[data-v-73eb43f3] {
295
+ flex: 1;
296
+ height: 0;
297
+ overflow-y: auto;
298
+ -webkit-overflow-scrolling: touch;
299
+ /* height: calc(80vh - 170px); */
300
+ /* 计算方式:总高度(80vh) - 头部高度(56px) - 搜索框高度(52px) */
301
+ position: relative;
253
302
  top: -1px;
254
303
  }
255
- .back-button[data-v-122ee6bc] {
304
+ .back-button[data-v-73eb43f3] {
256
305
  margin-right: 8px;
257
306
  }
258
- .current-path[data-v-122ee6bc] {
259
- flex: 1;
260
- font-size: 14px;
261
- color: #323233;
262
- white-space: nowrap;
263
- overflow: hidden;
307
+ .current-path[data-v-73eb43f3] {
308
+ flex: 1;
309
+ font-size: 14px;
310
+ color: #323233;
311
+ white-space: nowrap;
312
+ overflow: hidden;
264
313
  text-overflow: ellipsis;
265
314
  }
266
- .action-buttons[data-v-122ee6bc] {
267
- display: flex;
268
- gap: 8px;
315
+ .action-buttons[data-v-73eb43f3] {
316
+ display: flex;
317
+ gap: 8px;
269
318
  margin-left: auto;
270
- }
271
-
272
- /* .scroll-container {
273
- flex: 1;
274
- overflow-y: auto;
275
- -webkit-overflow-scrolling: touch;
319
+ }
320
+
321
+ /* .scroll-container {
322
+ flex: 1;
323
+ overflow-y: auto;
324
+ -webkit-overflow-scrolling: touch;
276
325
  } */
277
- .cell-content[data-v-122ee6bc] {
278
- display: flex;
279
- align-items: center;
326
+ .cell-content[data-v-73eb43f3] {
327
+ display: flex;
328
+ align-items: center;
280
329
  gap: 12px;
281
330
  }
282
- .circle-selector[data-v-122ee6bc] {
283
- width: 20px;
284
- height: 20px;
285
- border: 1px solid #ebedf0;
286
- border-radius: 50%;
287
- display: flex;
288
- align-items: center;
289
- justify-content: center;
290
- transition: all 0.2s;
331
+ .circle-selector[data-v-73eb43f3] {
332
+ width: 20px;
333
+ height: 20px;
334
+ border: 1px solid #ebedf0;
335
+ border-radius: 50%;
336
+ display: flex;
337
+ align-items: center;
338
+ justify-content: center;
339
+ transition: all 0.2s;
291
340
  flex-shrink: 0;
292
341
  }
293
- .circle-selector.selected[data-v-122ee6bc] {
294
- background-color: #1989fa;
342
+ .circle-selector.selected[data-v-73eb43f3] {
343
+ background-color: #1989fa;
295
344
  border-color: #1989fa;
296
345
  }
297
- .circle-selector.selected .van-icon[data-v-122ee6bc] {
298
- color: white;
346
+ .circle-selector.selected .van-icon[data-v-73eb43f3] {
347
+ color: white;
299
348
  font-size: 14px;
300
349
  }
301
- .van-cell__right-icon[data-v-122ee6bc] {
302
- color: #969799;
303
- font-size: 16px;
350
+ .van-cell__right-icon[data-v-73eb43f3] {
351
+ color: #969799;
352
+ font-size: 16px;
304
353
  margin-left: 8px;
305
354
  }
306
- .name[data-v-122ee6bc] {
307
- flex: 1;
308
- overflow: hidden;
309
- text-overflow: ellipsis;
355
+ .name[data-v-73eb43f3] {
356
+ flex: 1;
357
+ overflow: hidden;
358
+ text-overflow: ellipsis;
310
359
  white-space: nowrap;
311
360
  }
312
- .cancel-btn[data-v-122ee6bc] {
361
+ .cancel-btn[data-v-73eb43f3] {
313
362
  color: #969799;
314
363
  }
315
- .search-field[data-v-122ee6bc] {
316
- background: #fff;
317
- padding: 10px 16px;
318
- border-bottom: 1px solid #ebedf0;
319
- position: sticky;
320
- top: 0;
321
- z-index: 999;
322
- margin-bottom: 10px;
323
- flex-shrink: 0;
364
+ .search-field[data-v-73eb43f3] {
365
+ background: #fff;
366
+ padding: 10px 16px;
367
+ border-bottom: 1px solid #ebedf0;
368
+ position: sticky;
369
+ top: 0;
370
+ z-index: 999;
371
+ margin-bottom: 10px;
372
+ flex-shrink: 0;
324
373
  /* 防止压缩 */
325
- }
374
+ }
326
375
 
327
- .user-popup[data-v-9d9c2ea6] {
328
- height: 60vh;
376
+ .user-popup[data-v-6c4b4fc8] {
377
+ height: 60vh;
329
378
  width: 100%;
330
379
  }
331
- .picker-header[data-v-9d9c2ea6] {
332
- padding: 10px;
333
- border-bottom: 1px solid #ebedf0;
334
- display: flex;
335
- justify-content: space-between;
380
+ .picker-header[data-v-6c4b4fc8] {
381
+ padding: 10px;
382
+ border-bottom: 1px solid #ebedf0;
383
+ display: flex;
384
+ justify-content: space-between;
336
385
  align-items: center;
337
386
  }
338
- .scroll-container[data-v-9d9c2ea6] {
339
- height: calc(80vh - 150px);
387
+ .scroll-container[data-v-6c4b4fc8] {
388
+ height: calc(80vh - 150px);
340
389
  overflow-y: auto;
341
390
  }
342
- .search-container[data-v-9d9c2ea6] {
343
- padding: 10px;
344
- background: #fff;
345
- display: flex;
346
- align-items: center;
391
+ .search-container[data-v-6c4b4fc8] {
392
+ padding: 10px;
393
+ background: #fff;
394
+ display: flex;
395
+ align-items: center;
347
396
  gap: 8px;
348
397
  }
349
- [data-v-9d9c2ea6] .search-container .van-search {
398
+ [data-v-6c4b4fc8] .search-container .van-search {
350
399
  flex: 1;
351
400
  }
352
- .search-btn[data-v-9d9c2ea6] {
401
+ .search-btn[data-v-6c4b4fc8] {
353
402
  flex-shrink: 0;
354
403
  }
355
- .select-all-container[data-v-9d9c2ea6] {
356
- font-size: 14px;
357
- padding: 0 16px;
358
- margin: 10px 0;
359
- display: flex;
360
- justify-content: flex-end;
404
+ .select-all-container[data-v-6c4b4fc8] {
405
+ font-size: 14px;
406
+ padding: 0 16px;
407
+ margin: 10px 0;
408
+ display: flex;
409
+ justify-content: flex-end;
361
410
  align-items: center;
362
411
  }
363
- [data-v-9d9c2ea6] .van-checkbox__icon--square {
412
+ [data-v-6c4b4fc8] .van-checkbox__icon--square {
364
413
  border-radius: 4px;
365
414
  }
366
- [data-v-9d9c2ea6] .van-checkbox__label {
415
+ [data-v-6c4b4fc8] .van-checkbox__label {
367
416
  margin-left: 8px;
368
417
  }
369
- [data-v-9d9c2ea6] .van-radio-group .van-cell,[data-v-9d9c2ea6] .van-checkbox-group .van-cell {
418
+ [data-v-6c4b4fc8] .van-radio-group .van-cell,[data-v-6c4b4fc8] .van-checkbox-group .van-cell {
370
419
  align-items: center;
371
420
  }
372
- .current-path[data-v-9d9c2ea6] {
373
- flex: 1;
374
- font-size: 14px;
375
- color: #323233;
376
- white-space: nowrap;
377
- overflow: hidden;
421
+ .current-path[data-v-6c4b4fc8] {
422
+ flex: 1;
423
+ font-size: 14px;
424
+ color: #323233;
425
+ white-space: nowrap;
426
+ overflow: hidden;
378
427
  text-overflow: ellipsis;
379
428
  }
380
- .header-right[data-v-9d9c2ea6] {
381
- display: flex;
382
- gap: 8px;
429
+ .header-right[data-v-6c4b4fc8] {
430
+ display: flex;
431
+ gap: 8px;
383
432
  margin-left: auto;
384
433
  }
385
- .cancel-btn[data-v-9d9c2ea6] {
386
- color: #969799;
434
+ .cancel-btn[data-v-6c4b4fc8] {
435
+ color: #969799;
387
436
  margin-right: 5px;
388
- }
389
- [data-v-b5f63d62] .label {
437
+ }
438
+ [data-v-16be97a4] .label {
390
439
  color: #000 !important;
391
440
  }
392
- [data-v-b5f63d62] .van-field__control:disabled {
441
+ [data-v-16be97a4] .van-field__control:disabled {
393
442
  color: #000 !important;
394
443
  cursor: not-allowed;
395
444
  opacity: 1;
396
445
  -webkit-text-fill-color: #000;
397
- }.image-box .cover[data-v-150f1992] {
446
+ }.image-box .cover[data-v-7ebfc739] {
398
447
  width: 80px;
399
448
  height: 80px;
400
- }[data-v-1395002a] .label {
449
+ }[data-v-cf8ec8a0] .label {
401
450
  color: #000 !important;
402
451
  }
403
- [data-v-1395002a] .van-field__control:disabled {
452
+ [data-v-cf8ec8a0] .van-field__control:disabled {
404
453
  color: #000 !important;
405
454
  cursor: not-allowed;
406
455
  opacity: 1;
407
456
  -webkit-text-fill-color: #000;
408
457
  }
409
- .user-popup[data-v-03b9c3fe] {
410
- width: 100%;
458
+ .user-popup[data-v-a489ca4c] {
459
+ width: 100%;
411
460
  overflow: hidden;
412
461
  }
413
- .department-selector[data-v-03b9c3fe] {
462
+ .department-selector[data-v-a489ca4c] {
414
463
  padding: 10px;
415
464
  }
416
- .search-buttons[data-v-03b9c3fe] {
417
- display: flex;
465
+ .search-buttons[data-v-a489ca4c] {
466
+ display: flex;
418
467
  gap: 10px;
419
468
  }
420
- .clear-btn[data-v-03b9c3fe] {
421
- background-color: #f2f3f5;
422
- border: none;
423
- border-radius: 4px;
424
- padding: 4px 8px;
469
+ .clear-btn[data-v-a489ca4c] {
470
+ background-color: #f2f3f5;
471
+ border: none;
472
+ border-radius: 4px;
473
+ padding: 4px 8px;
425
474
  font-size: 14px;
426
475
  }
427
- .confirm-btn[data-v-03b9c3fe] {
428
- background-color: #1989fa;
429
- color: white;
430
- border: none;
431
- border-radius: 4px;
432
- padding: 4px 8px;
476
+ .confirm-btn[data-v-a489ca4c] {
477
+ background-color: #1989fa;
478
+ color: white;
479
+ border: none;
480
+ border-radius: 4px;
481
+ padding: 4px 8px;
433
482
  font-size: 14px;
434
483
  }
435
- .no-results[data-v-03b9c3fe] {
436
- text-align: center;
437
- padding: 20px;
484
+ .no-results[data-v-a489ca4c] {
485
+ text-align: center;
486
+ padding: 20px;
438
487
  color: #969799;
439
488
  }
440
- .picker-header[data-v-03b9c3fe] {
441
- padding: 10px;
442
- border-bottom: 1px solid #ebedf0;
443
- display: flex;
444
- justify-content: space-between;
489
+ .picker-header[data-v-a489ca4c] {
490
+ padding: 10px;
491
+ border-bottom: 1px solid #ebedf0;
492
+ display: flex;
493
+ justify-content: space-between;
445
494
  align-items: center;
446
495
  }
447
- .current-path[data-v-03b9c3fe] {
448
- flex: 1;
449
- font-size: 14px;
450
- color: #323233;
451
- white-space: nowrap;
452
- overflow: hidden;
496
+ .current-path[data-v-a489ca4c] {
497
+ flex: 1;
498
+ font-size: 14px;
499
+ color: #323233;
500
+ white-space: nowrap;
501
+ overflow: hidden;
453
502
  text-overflow: ellipsis;
454
503
  }
455
- .header-right[data-v-03b9c3fe] {
456
- display: flex;
457
- gap: 8px;
504
+ .header-right[data-v-a489ca4c] {
505
+ display: flex;
506
+ gap: 8px;
458
507
  margin-left: auto;
459
508
  }
460
- .cancel-btn[data-v-03b9c3fe] {
461
- color: #969799;
509
+ .cancel-btn[data-v-a489ca4c] {
510
+ color: #969799;
462
511
  margin-right: 5px;
463
512
  }
464
- .scroll-container[data-v-03b9c3fe] {
465
- height: calc(80vh - 150px);
513
+ .scroll-container[data-v-a489ca4c] {
514
+ height: calc(80vh - 150px);
466
515
  overflow-y: auto;
467
- }
516
+ }
468
517
 
469
- .user-popup[data-v-416c0914] {
470
- width: 100%;
518
+ .user-popup[data-v-78c036bd] {
519
+ width: 100%;
471
520
  overflow: hidden;
472
521
  }
473
- .department-selector[data-v-416c0914] {
522
+ .department-selector[data-v-78c036bd] {
474
523
  padding: 10px;
475
524
  }
476
- .search-buttons[data-v-416c0914] {
477
- display: flex;
525
+ .search-buttons[data-v-78c036bd] {
526
+ display: flex;
478
527
  gap: 10px;
479
528
  }
480
- .clear-btn[data-v-416c0914] {
481
- background-color: #f2f3f5;
482
- border: none;
483
- border-radius: 4px;
484
- padding: 4px 8px;
529
+ .clear-btn[data-v-78c036bd] {
530
+ background-color: #f2f3f5;
531
+ border: none;
532
+ border-radius: 4px;
533
+ padding: 4px 8px;
485
534
  font-size: 14px;
486
535
  }
487
- .confirm-btn[data-v-416c0914] {
488
- background-color: #1989fa;
489
- color: white;
490
- border: none;
491
- border-radius: 4px;
492
- padding: 4px 8px;
536
+ .confirm-btn[data-v-78c036bd] {
537
+ background-color: #1989fa;
538
+ color: white;
539
+ border: none;
540
+ border-radius: 4px;
541
+ padding: 4px 8px;
493
542
  font-size: 14px;
494
543
  }
495
- .no-results[data-v-416c0914] {
496
- text-align: center;
497
- padding: 20px;
544
+ .no-results[data-v-78c036bd] {
545
+ text-align: center;
546
+ padding: 20px;
498
547
  color: #969799;
499
548
  }
500
- .picker-header[data-v-416c0914] {
501
- padding: 10px;
502
- border-bottom: 1px solid #ebedf0;
503
- display: flex;
504
- justify-content: space-between;
549
+ .picker-header[data-v-78c036bd] {
550
+ padding: 10px;
551
+ border-bottom: 1px solid #ebedf0;
552
+ display: flex;
553
+ justify-content: space-between;
505
554
  align-items: center;
506
555
  }
507
- .current-path[data-v-416c0914] {
508
- flex: 1;
509
- font-size: 14px;
510
- color: #323233;
511
- white-space: nowrap;
512
- overflow: hidden;
556
+ .current-path[data-v-78c036bd] {
557
+ flex: 1;
558
+ font-size: 14px;
559
+ color: #323233;
560
+ white-space: nowrap;
561
+ overflow: hidden;
513
562
  text-overflow: ellipsis;
514
563
  }
515
- .header-right[data-v-416c0914] {
516
- display: flex;
517
- gap: 8px;
564
+ .header-right[data-v-78c036bd] {
565
+ display: flex;
566
+ gap: 8px;
518
567
  margin-left: auto;
519
568
  }
520
- .cancel-btn[data-v-416c0914] {
521
- color: #969799;
569
+ .cancel-btn[data-v-78c036bd] {
570
+ color: #969799;
522
571
  margin-right: 5px;
523
572
  }
524
- .scroll-container[data-v-416c0914] {
525
- height: calc(80vh - 150px);
573
+ .scroll-container[data-v-78c036bd] {
574
+ height: calc(80vh - 150px);
526
575
  overflow-y: auto;
527
- }
576
+ }
528
577
 
529
- .user-item[data-v-5378e174]{
578
+ .user-item[data-v-4022cd82]{
530
579
  margin:3px;
531
- }
580
+ }
532
581
 
533
- .user[data-v-015e01f2]{
582
+ .user[data-v-58929b5a]{
534
583
  padding:4px 8px;
535
- }
584
+ }
536
585
 
537
- .widget[data-v-b574b008] {
538
- position: relative;
539
- display: flex;
540
- flex-direction: column;
541
- align-items: center;
542
- justify-content: space-around;
543
- padding: 20px;
544
- background: linear-gradient(to right, #4a90e2, #87ceeb);
545
- border-radius: 10px;
586
+ .widget[data-v-107e26c3] {
587
+ position: relative;
588
+ display: flex;
589
+ flex-direction: column;
590
+ align-items: center;
591
+ justify-content: space-around;
592
+ padding: 20px;
593
+ background: linear-gradient(to right, #4a90e2, #87ceeb);
594
+ border-radius: 10px;
546
595
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
547
- .user-avatar[data-v-b574b008] {
596
+ .user-avatar[data-v-107e26c3] {
548
597
  margin-bottom: 15px;
549
598
  }
550
- .user-info[data-v-b574b008] {
551
- display: flex;
552
- align-items: center;
553
- justify-content: space-around;
599
+ .user-info[data-v-107e26c3] {
600
+ display: flex;
601
+ align-items: center;
602
+ justify-content: space-around;
554
603
  margin-bottom: 15px;
555
- .user-info-item[data-v-b574b008] {
556
- font-size: 16px;
557
- line-height: 22px;
558
- color: #fff;
559
- text-align: center;
604
+ .user-info-item[data-v-107e26c3] {
605
+ font-size: 16px;
606
+ line-height: 22px;
607
+ color: #fff;
608
+ text-align: center;
560
609
  padding: 0 3px;
561
610
  }
562
611
  }
563
- .space[data-v-b574b008] {
564
- min-height: 10px;
612
+ .space[data-v-107e26c3] {
613
+ min-height: 10px;
565
614
  flex: 1;
566
- }
567
-
615
+ }
616
+
568
617
  /* 添加退出按钮样式 */
569
- .logout-button[data-v-b574b008] {
570
- width: 70px;
571
- height: 30px;
572
- position: absolute;
573
- top: 20px;
574
- right: 20px;
575
- background-color: rgba(255, 255, 255, 0.2);
576
- color: white;
577
- border: none;
578
- border-radius: 15px;
579
- padding: 5px 15px;
580
- cursor: pointer;
581
- font-size: 14px;
618
+ .logout-button[data-v-107e26c3] {
619
+ width: 70px;
620
+ height: 30px;
621
+ position: absolute;
622
+ top: 20px;
623
+ right: 20px;
624
+ background-color: rgba(255, 255, 255, 0.2);
625
+ color: white;
626
+ border: none;
627
+ border-radius: 15px;
628
+ padding: 5px 15px;
629
+ cursor: pointer;
630
+ font-size: 14px;
582
631
  transition: background-color 0.3s;
583
632
  }
584
- .logout-button[data-v-b574b008]:hover {
633
+ .logout-button[data-v-107e26c3]:hover {
585
634
  background-color: rgba(255, 255, 255, 0.4);
586
635
  }
587
- .user-jobs[data-v-b574b008] {
588
- display: flex;
589
- justify-content: center;
590
- gap: 15px;
591
- width: 100%;
636
+ .user-jobs[data-v-107e26c3] {
637
+ display: flex;
638
+ justify-content: center;
639
+ gap: 15px;
640
+ width: 100%;
592
641
  max-width: 300px;
593
- .job-item[data-v-b574b008] {
594
- padding: 5px 10px;
595
- background-color: rgba(255, 255, 255, 0.2);
596
- border-radius: 20px;
597
- font-size: 12px;
642
+ .job-item[data-v-107e26c3] {
643
+ padding: 5px 10px;
644
+ background-color: rgba(255, 255, 255, 0.2);
645
+ border-radius: 20px;
646
+ font-size: 12px;
598
647
  color: #fff;
599
648
  }
600
649
  }
601
- }
602
- .widget[data-v-05e3b99c] {
650
+ }
651
+ .widget[data-v-5f12f3e8] {
603
652
  background-color: white;
604
653
  border-radius: 8px;
605
654
  box-shadow: var(--van-dropdown-menu-shadow);
606
655
  color: 14px;
607
656
  }
608
- .widget .card-box[data-v-05e3b99c] {
657
+ .widget .card-box[data-v-5f12f3e8] {
609
658
  padding-bottom: 8px;
610
659
  }
611
- .widget .card-box .card-header[data-v-05e3b99c] {
660
+ .widget .card-box .card-header[data-v-5f12f3e8] {
612
661
  display: flex;
613
662
  align-items: center;
614
663
  justify-content: space-between;
615
664
  padding: 15px 10px;
616
665
  border-bottom: 1px solid #eee;
617
666
  }
618
- .widget .card-box .card-header .card-sum[data-v-05e3b99c] {
667
+ .widget .card-box .card-header .card-sum[data-v-5f12f3e8] {
619
668
  flex: 1;
620
669
  font-size: 14px;
621
670
  text-align: left;
622
671
  }
623
- .widget .card-box .card-header .user-state[data-v-05e3b99c] {
672
+ .widget .card-box .card-header .user-state[data-v-5f12f3e8] {
624
673
  margin-right: 1px;
625
674
  }
626
- [data-v-05e3b99c] .van-cell__value {
675
+ [data-v-5f12f3e8] .van-cell__value {
627
676
  flex: 2 !important;
628
677
  }
629
- [data-v-05e3b99c] .van-cell__title {
678
+ [data-v-5f12f3e8] .van-cell__title {
630
679
  font-size: 12px !important;
631
680
  color: #666 !important;
632
681
  text-align: left !important;
633
682
  }
634
- [data-v-05e3b99c] .van-cell__value {
683
+ [data-v-5f12f3e8] .van-cell__value {
635
684
  font-size: 12px !important;
636
685
  color: #888 !important;
637
686
  }
638
- [data-v-05e3b99c] .van-cell {
687
+ [data-v-5f12f3e8] .van-cell {
639
688
  padding: 2px 10px !important;
640
- }[data-v-71b140b3] .label {
689
+ }[data-v-d8d21ade] .label {
641
690
  color: #000 !important;
642
691
  }
643
- [data-v-71b140b3] .van-field__control:disabled {
692
+ [data-v-d8d21ade] .van-field__control:disabled {
644
693
  color: #000 !important;
645
694
  cursor: not-allowed;
646
695
  opacity: 1;
647
696
  -webkit-text-fill-color: #000;
648
- }.item-box[data-v-4eaf7b54] {
697
+ }.item-box[data-v-2bd62a7a] {
649
698
  position: relative;
650
699
  padding-bottom: 5px;
651
700
  border-bottom: 1px solid #e1e1e1;
652
701
  }
653
- .actionbar[data-v-4eaf7b54] {
702
+ .actionbar[data-v-2bd62a7a] {
654
703
  display: flex;
655
704
  justify-content: center;
656
705
  margin-top: 5px;
657
706
  }
658
- [data-v-4eaf7b54] .label {
707
+ [data-v-2bd62a7a] .label {
659
708
  color: #000 !important;
660
709
  }
661
- [data-v-4eaf7b54] .van-field__control--custom {
710
+ [data-v-2bd62a7a] .van-field__control--custom {
662
711
  display: block;
663
712
  }
664
- .popup-box[data-v-2e9ed6fc] {
665
- min-height: 20vh;
666
- max-height: 40vh;
713
+ .popup-box[data-v-571370f8] {
714
+ min-height: 20vh;
715
+ max-height: 40vh;
667
716
  overflow-y: auto;
668
- .checkbox-list[data-v-2e9ed6fc] {
717
+ .checkbox-list[data-v-571370f8] {
669
718
  padding: 15px 25px;
670
- [data-v-2e9ed6fc] .van-checkbox__label {
671
- flex: 1;
719
+ [data-v-571370f8] .van-checkbox__label {
720
+ flex: 1;
672
721
  text-align: right;
673
722
  }
674
723
  }
675
724
  }
676
- .select-all-container[data-v-2e9ed6fc] {
677
- font-size: 14px;
678
- padding: 15px 25px 0 15px;
679
- margin: 10px 0;
680
- display: flex;
681
- justify-content: flex-end;
725
+ .select-all-container[data-v-571370f8] {
726
+ font-size: 14px;
727
+ padding: 15px 25px 0 15px;
728
+ margin: 10px 0;
729
+ display: flex;
730
+ justify-content: flex-end;
682
731
  align-items: center;
683
732
  }
684
- .select-all-container .van-checkbox[data-v-2e9ed6fc] {
733
+ .select-all-container .van-checkbox[data-v-571370f8] {
685
734
  margin-left: auto;
686
- }
687
-
735
+ }
736
+
688
737
  /* 新增:调整方形复选框的边距 */
689
- .van-checkbox--square[data-v-2e9ed6fc] {
738
+ .van-checkbox--square[data-v-571370f8] {
690
739
  margin-left: 8px;
691
- }
740
+ }
692
741
 
693
- .select-item[data-v-3fa519af]{
742
+ .select-item[data-v-6744b874]{
694
743
  margin:3px;
695
- }
744
+ }
696
745
 
697
- .cascader-pop[data-v-3bc5a250] {
698
- width: 100%;
746
+ .cascader-pop[data-v-026ce5e7] {
747
+ width: 100%;
699
748
  overflow: hidden;
700
749
  }
701
- .cascader-selector[data-v-3bc5a250] {
750
+ .cascader-selector[data-v-026ce5e7] {
702
751
  padding: 10px;
703
752
  }
704
- .search-buttons[data-v-3bc5a250] {
705
- display: flex;
753
+ .search-buttons[data-v-026ce5e7] {
754
+ display: flex;
706
755
  gap: 10px;
707
756
  }
708
- .clear-btn[data-v-3bc5a250] {
709
- background-color: #f2f3f5;
710
- border: none;
711
- border-radius: 4px;
712
- padding: 4px 8px;
757
+ .clear-btn[data-v-026ce5e7] {
758
+ background-color: #f2f3f5;
759
+ border: none;
760
+ border-radius: 4px;
761
+ padding: 4px 8px;
713
762
  font-size: 14px;
714
763
  }
715
- .confirm-btn[data-v-3bc5a250] {
716
- background-color: #1989fa;
717
- color: white;
718
- border: none;
719
- border-radius: 4px;
720
- padding: 4px 8px;
764
+ .confirm-btn[data-v-026ce5e7] {
765
+ background-color: #1989fa;
766
+ color: white;
767
+ border: none;
768
+ border-radius: 4px;
769
+ padding: 4px 8px;
721
770
  font-size: 14px;
722
771
  }
723
- .no-results[data-v-3bc5a250] {
724
- text-align: center;
725
- padding: 20px;
772
+ .no-results[data-v-026ce5e7] {
773
+ text-align: center;
774
+ padding: 20px;
726
775
  color: #969799;
727
776
  }
728
- .cascader-header[data-v-3bc5a250] {
729
- padding: 10px;
730
- border-bottom: 1px solid #ebedf0;
731
- display: flex;
732
- justify-content: space-between;
777
+ .cascader-header[data-v-026ce5e7] {
778
+ padding: 10px;
779
+ border-bottom: 1px solid #ebedf0;
780
+ display: flex;
781
+ justify-content: space-between;
733
782
  align-items: center;
734
783
  }
735
- .current-path[data-v-3bc5a250] {
736
- flex: 1;
737
- font-size: 14px;
738
- color: #323233;
739
- white-space: nowrap;
740
- overflow: hidden;
784
+ .current-path[data-v-026ce5e7] {
785
+ flex: 1;
786
+ font-size: 14px;
787
+ margin-left:5px;
788
+ color: #323233;
789
+ white-space: nowrap;
790
+ overflow: hidden;
741
791
  text-overflow: ellipsis;
742
792
  }
743
- .header-right[data-v-3bc5a250] {
744
- display: flex;
745
- gap: 8px;
793
+ .header-right[data-v-026ce5e7] {
794
+ display: flex;
795
+ gap: 8px;
746
796
  margin-left: auto;
747
797
  }
748
- .cancel-btn[data-v-3bc5a250] {
749
- color: #969799;
798
+ .cancel-btn[data-v-026ce5e7] {
799
+ color: #969799;
750
800
  margin-right: 5px;
751
801
  }
752
- .scroll-container[data-v-3bc5a250] {
753
- height: calc(80vh - 150px);
802
+ .scroll-container[data-v-026ce5e7] {
803
+ height: calc(80vh - 150px);
754
804
  overflow-y: auto;
755
805
  }
756
- .cell-content[data-v-3bc5a250] {
757
- display: flex;
758
- align-items: center;
806
+ .cell-content[data-v-026ce5e7] {
807
+ display: flex;
808
+ align-items: center;
759
809
  gap: 12px;
760
810
  }
761
- .circle-selector[data-v-3bc5a250] {
762
- width: 20px;
763
- height: 20px;
764
- border-radius: 50%;
765
- display: flex;
766
- align-items: center;
767
- justify-content: center;
768
- transition: all 0.2s;
811
+ .circle-selector[data-v-026ce5e7] {
812
+ width: 20px;
813
+ height: 20px;
814
+ border-radius: 50%;
815
+ display: flex;
816
+ align-items: center;
817
+ justify-content: center;
818
+ transition: all 0.2s;
769
819
  flex-shrink: 0;
770
820
  }
771
- .circle-selector.selected[data-v-3bc5a250] {
772
- background-color: #1989fa;
821
+ .circle-selector.selected[data-v-026ce5e7] {
822
+ background-color: #1989fa;
773
823
  border-color: #1989fa;
774
824
  }
775
- .circle-selector.selected .van-icon[data-v-3bc5a250] {
776
- color: white;
825
+ .circle-selector.selected .van-icon[data-v-026ce5e7] {
826
+ color: white;
777
827
  font-size: 14px;
778
828
  }
779
- .van-cell__right-icon[data-v-3bc5a250] {
780
- color: #969799;
781
- font-size: 16px;
829
+ .van-cell__right-icon[data-v-026ce5e7] {
830
+ color: #969799;
831
+ font-size: 16px;
782
832
  margin-left: 8px;
783
833
  }
784
- .name[data-v-3bc5a250] {
785
- flex: 1;
786
- overflow: hidden;
787
- text-overflow: ellipsis;
834
+ .name[data-v-026ce5e7] {
835
+ flex: 1;
836
+ overflow: hidden;
837
+ text-overflow: ellipsis;
788
838
  white-space: nowrap;
789
839
  }
790
- .cancel-btn[data-v-3bc5a250] {
840
+ .cancel-btn[data-v-026ce5e7] {
791
841
  color: #969799;
792
842
  }
793
- .search-field[data-v-3bc5a250] {
794
- background: #fff;
795
- padding: 10px 16px;
796
- border-bottom: 1px solid #ebedf0;
797
- position: sticky;
798
- top: 0;
799
- z-index: 999;
800
- margin-bottom: 10px;
801
- flex-shrink: 0;
843
+ .search-field[data-v-026ce5e7] {
844
+ background: #fff;
845
+ padding: 10px 16px;
846
+ border-bottom: 1px solid #ebedf0;
847
+ position: sticky;
848
+ top: 0;
849
+ z-index: 999;
850
+ margin-bottom: 10px;
851
+ flex-shrink: 0;
802
852
  /* 防止压缩 */
803
- }
853
+ }
804
854
 
805
- .widget[data-v-7cd48f9e] {
855
+ .widget[data-v-0c8e09c0] {
806
856
  /* 统一字段间距 */
807
857
  }
808
- .widget[data-v-7cd48f9e] .van-cell {
858
+ .widget[data-v-0c8e09c0] .van-cell {
809
859
  align-items: center;
810
860
  }
811
- .widget[data-v-7cd48f9e] .van-field__label {
861
+ .widget[data-v-0c8e09c0] .van-field__label {
812
862
  width: 90px;
813
863
  flex: none;
814
864
  }
815
- .widget .readonly-field[data-v-7cd48f9e] {
865
+ .widget .readonly-field[data-v-0c8e09c0] {
816
866
  /* 添加必填星号对齐 */
817
867
  }
818
- .widget .readonly-field[data-v-7cd48f9e] .van-field__control {
868
+ .widget .readonly-field[data-v-0c8e09c0] .van-field__control {
819
869
  color: #323233;
820
870
  /* 修改文字颜色与普通字段一致 */
821
871
  padding-right: 16px;
822
872
  }
823
- .widget .readonly-field.van-field--required[data-v-7cd48f9e] .van-field__label::before {
873
+ .widget .readonly-field.van-field--required[data-v-0c8e09c0] .van-field__label::before {
824
874
  margin-right: 4px;
825
875
  }
826
- .widget .readonly-field[data-v-7cd48f9e] {
876
+ .widget .readonly-field[data-v-0c8e09c0] {
827
877
  margin: 4px 0;
828
- }.widget[data-v-d3252972] {
878
+ }.widget[data-v-3feb23f0] {
829
879
  background: #fff;
830
880
  box-sizing: border-box;
831
881
  height: 100%;
832
882
  text-align: left;
833
883
  font-size: 12px;
834
884
  }
835
- .option[data-v-d3252972] {
885
+ .option[data-v-3feb23f0] {
836
886
  margin: 0 8px 8px 0;
837
887
  padding: 5px 10px;
838
888
  border-radius: 6px;
@@ -842,16 +892,16 @@
842
892
  display: inline-block;
843
893
  position: relative;
844
894
  }
845
- [data-v-d3252972] .van-field__label {
895
+ [data-v-3feb23f0] .van-field__label {
846
896
  margin: auto;
847
897
  }
848
- [data-v-d3252972] .van-cell {
898
+ [data-v-3feb23f0] .van-cell {
849
899
  font-size: 12px;
850
900
  padding: 5px 5px;
851
901
  }
852
- [data-v-d3252972] .van-icon {
902
+ [data-v-3feb23f0] .van-icon {
853
903
  font-size: 12px;
854
904
  }
855
- [data-v-d3252972] .van-popup .van-cell {
905
+ [data-v-3feb23f0] .van-popup .van-cell {
856
906
  padding: 5px 25px;
857
907
  }