widget.qw 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -0
- package/build/favicon.ico +0 -0
- package/build/style.css +763 -0
- package/build/widget.qw.es.js +20653 -0
- package/build/widget.qw.umd.js +20660 -0
- package/index.html +17 -0
- package/package.json +47 -0
- package/public/favicon.ico +0 -0
- package/src/App.vue +26 -0
- package/src/api/index.js +126 -0
- package/src/assets/avatar.png +0 -0
- package/src/assets/banner_handle.png +0 -0
- package/src/assets/bg_blue.png +0 -0
- package/src/assets/bg_white.png +0 -0
- package/src/assets/down.png +0 -0
- package/src/assets/home.jpg +0 -0
- package/src/assets/icon_box.png +0 -0
- package/src/assets/icon_dot.png +0 -0
- package/src/assets/icon_draw.png +0 -0
- package/src/assets/icon_file.png +0 -0
- package/src/assets/icon_fold.png +0 -0
- package/src/assets/icon_shield.png +0 -0
- package/src/assets/logo.png +0 -0
- package/src/components/AuditBar.vue +341 -0
- package/src/components/BillCard.vue +156 -0
- package/src/components/CheckGroup.vue +114 -0
- package/src/components/DatetimePicker/DatetimePop.vue +343 -0
- package/src/components/DatetimePicker/index.vue +113 -0
- package/src/components/DayDropdown.vue +57 -0
- package/src/components/FilePicker.vue +114 -0
- package/src/components/Input.vue +72 -0
- package/src/components/MonthDropdown.vue +52 -0
- package/src/components/MultiPicker.vue +124 -0
- package/src/components/ProjectDropdown.vue +62 -0
- package/src/components/ProjectPicker.vue +111 -0
- package/src/components/SecretNotify.js +6 -0
- package/src/components/Sheet.vue +93 -0
- package/src/components/SinglePicker.vue +103 -0
- package/src/components/SingleUserSelector.vue +425 -0
- package/src/components/Switch.vue +65 -0
- package/src/components/TreePicker.vue +113 -0
- package/src/components/UserPicker.vue +107 -0
- package/src/components/UserProfile.vue +128 -0
- package/src/components/UsersPicker.vue +118 -0
- package/src/components/YearDropdown.vue +60 -0
- package/src/components/data_selector.vue +281 -0
- package/src/components/image_picker.vue +115 -0
- package/src/components/images_picker.vue +140 -0
- package/src/components/index.js +157 -0
- package/src/components/mult_list_selector.vue +156 -0
- package/src/components/product_selector.vue +186 -0
- package/src/components/subdepartment_selector.vue +481 -0
- package/src/components/user_selector.vue +639 -0
- package/src/components/widget/DataPop.vue +96 -0
- package/src/components/widget/TreePop.vue +89 -0
- package/src/components/widget/UserPop.vue +347 -0
- package/src/env.d.ts +8 -0
- package/src/main.js +111 -0
- package/src/router/index.ts +165 -0
- package/src/util/array_util.js +32 -0
- package/src/util/auth_util.js +73 -0
- package/src/util/bool_util.js +6 -0
- package/src/util/bus.js +2 -0
- package/src/util/cache_util.js +19 -0
- package/src/util/errer_code.js +7 -0
- package/src/util/eval_util.js +20 -0
- package/src/util/icon_util.js +37 -0
- package/src/util/image_util.js +28 -0
- package/src/util/index.js +56 -0
- package/src/util/num_util.js +71 -0
- package/src/util/obj_util.js +29 -0
- package/src/util/request.js +74 -0
- package/src/util/request_json.js +72 -0
- package/src/util/request_json_mute.js +66 -0
- package/src/util/request_upload.js +79 -0
- package/src/util/route_util.js +32 -0
- package/src/util/str_util.js +144 -0
- package/src/util/time_util.js +407 -0
- package/src/util/toast_util.js +25 -0
- package/src/util/tree_util.js +120 -0
- package/src/util/validate.js +183 -0
- package/src/util/vue_filter.js +223 -0
- package/src/views/auditbar/index.vue +66 -0
- package/src/views/billcard/index.vue +46 -0
- package/src/views/checkgroup/index.vue +36 -0
- package/src/views/dataSelector/index.vue +49 -0
- package/src/views/datetimepicker/index.vue +35 -0
- package/src/views/daydropdown/index.vue +31 -0
- package/src/views/filepicker/index.vue +32 -0
- package/src/views/home/index.vue +64 -0
- package/src/views/imagepicker/index.vue +32 -0
- package/src/views/imagespicker/index.vue +32 -0
- package/src/views/input/index.vue +35 -0
- package/src/views/monthdropdown/index.vue +31 -0
- package/src/views/multListSelector/index.vue +61 -0
- package/src/views/multipicker/index.vue +37 -0
- package/src/views/productSelector/index.vue +35 -0
- package/src/views/projectdropdown/index.vue +31 -0
- package/src/views/projectpicker/index.vue +42 -0
- package/src/views/secretnotify/index.vue +28 -0
- package/src/views/sheet/index.vue +46 -0
- package/src/views/singlepicker/index.vue +36 -0
- package/src/views/subdepartmentSelector/index.vue +41 -0
- package/src/views/switch/index.vue +35 -0
- package/src/views/treepicker/index.vue +42 -0
- package/src/views/userSelector/index.vue +54 -0
- package/src/views/userSelectorNew/index.vue +45 -0
- package/src/views/userpicker/index.vue +43 -0
- package/src/views/userprofile/index.vue +30 -0
- package/src/views/userspicker/index.vue +43 -0
- package/src/views/yeardropdown/index.vue +32 -0
- package/src/vm/index.js +6 -0
- package/tsconfig.json +19 -0
- package/tsconfig.node.json +8 -0
- package/vite.config.ts +73 -0
package/build/style.css
ADDED
|
@@ -0,0 +1,763 @@
|
|
|
1
|
+
@charset "UTF-8";.widget[data-v-87892c3e] {
|
|
2
|
+
text-align: center;
|
|
3
|
+
padding: 15px 15px;
|
|
4
|
+
}
|
|
5
|
+
.memo[data-v-87892c3e] {
|
|
6
|
+
margin-bottom: 15px;
|
|
7
|
+
}
|
|
8
|
+
.refuse-btn[data-v-87892c3e] {
|
|
9
|
+
width: 120px;
|
|
10
|
+
margin-right: 15px;
|
|
11
|
+
}
|
|
12
|
+
.pass-btn[data-v-87892c3e] {
|
|
13
|
+
width: 120px;
|
|
14
|
+
}
|
|
15
|
+
.apply-btn[data-v-87892c3e] {
|
|
16
|
+
width: 60vw;
|
|
17
|
+
}
|
|
18
|
+
.task-list[data-v-87892c3e] {
|
|
19
|
+
margin-top: 15px;
|
|
20
|
+
}
|
|
21
|
+
.task-title[data-v-87892c3e] {
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-weight: bold;
|
|
24
|
+
color: #333;
|
|
25
|
+
text-align: left;
|
|
26
|
+
}
|
|
27
|
+
.task-user[data-v-87892c3e] {
|
|
28
|
+
font-size: 13px;
|
|
29
|
+
color: #666;
|
|
30
|
+
text-align: left;
|
|
31
|
+
margin-top: 5px;
|
|
32
|
+
}
|
|
33
|
+
.audit-title[data-v-87892c3e] {
|
|
34
|
+
padding: 25px 15px 0 15px;
|
|
35
|
+
font-size: 16px;
|
|
36
|
+
font-weight: bold;
|
|
37
|
+
color: #666;
|
|
38
|
+
text-align: left;
|
|
39
|
+
}
|
|
40
|
+
:root:root {
|
|
41
|
+
--van-popover-action-width: 70vw;
|
|
42
|
+
}
|
|
43
|
+
[data-v-5653f0d0] .label {
|
|
44
|
+
color: #000 !important;
|
|
45
|
+
}
|
|
46
|
+
[data-v-5653f0d0] .van-field__control:disabled {
|
|
47
|
+
color: #000 !important;
|
|
48
|
+
cursor: not-allowed;
|
|
49
|
+
opacity: 1;
|
|
50
|
+
-webkit-text-fill-color: #000;
|
|
51
|
+
}[data-v-24e62c3a] .label {
|
|
52
|
+
color: #000 !important;
|
|
53
|
+
}
|
|
54
|
+
[data-v-24e62c3a] .van-field__control:disabled {
|
|
55
|
+
color: #000 !important;
|
|
56
|
+
cursor: not-allowed;
|
|
57
|
+
opacity: 1;
|
|
58
|
+
-webkit-text-fill-color: #000;
|
|
59
|
+
}
|
|
60
|
+
.popup-box[data-v-10d79413] {
|
|
61
|
+
min-height: 20vh;
|
|
62
|
+
max-height: 40vh;
|
|
63
|
+
overflow-y: auto;
|
|
64
|
+
.checkbox-list[data-v-10d79413] {
|
|
65
|
+
padding: 15px 25px;
|
|
66
|
+
[data-v-10d79413] .van-checkbox__label {
|
|
67
|
+
flex: 1;
|
|
68
|
+
text-align: right;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
.select-all-container[data-v-10d79413] {
|
|
73
|
+
font-size: 14px;
|
|
74
|
+
padding: 15px 25px 0 15px;
|
|
75
|
+
margin: 10px 0;
|
|
76
|
+
display: flex;
|
|
77
|
+
justify-content: flex-end;
|
|
78
|
+
align-items: center;
|
|
79
|
+
}
|
|
80
|
+
.select-all-container .van-checkbox[data-v-10d79413] {
|
|
81
|
+
margin-left: auto;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* 新增:调整方形复选框的边距 */
|
|
85
|
+
.van-checkbox--square[data-v-10d79413] {
|
|
86
|
+
margin-left: 8px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.data-item[data-v-95e8cb3c]{
|
|
90
|
+
margin: 0 8px 8px 0;
|
|
91
|
+
padding: 2px 5px;
|
|
92
|
+
}
|
|
93
|
+
[data-v-7f5a06de] .label {
|
|
94
|
+
color: #000 !important;
|
|
95
|
+
}
|
|
96
|
+
[data-v-7f5a06de] .van-field__control:disabled {
|
|
97
|
+
color: #000 !important;
|
|
98
|
+
cursor: not-allowed;
|
|
99
|
+
opacity: 1;
|
|
100
|
+
-webkit-text-fill-color: #000;
|
|
101
|
+
}
|
|
102
|
+
.popup-style[data-v-57cfd397] {
|
|
103
|
+
height: 21.25rem;
|
|
104
|
+
}
|
|
105
|
+
.showMultipleButton[data-v-57cfd397] {
|
|
106
|
+
padding-bottom: 0;
|
|
107
|
+
}
|
|
108
|
+
.showMultipleButton .van-button[data-v-57cfd397] {
|
|
109
|
+
border: 0;
|
|
110
|
+
}
|
|
111
|
+
.flex-between[data-v-57cfd397] {
|
|
112
|
+
padding: 10px;
|
|
113
|
+
display: flex;
|
|
114
|
+
justify-content: space-between;
|
|
115
|
+
align-items: center;
|
|
116
|
+
}
|
|
117
|
+
.bold[data-v-57cfd397] {
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
color: #444;
|
|
120
|
+
}
|
|
121
|
+
.checkbox-style[data-v-57cfd397] {
|
|
122
|
+
/* height: 220px; */
|
|
123
|
+
height: calc(220px - 30px);
|
|
124
|
+
overflow-y: auto;
|
|
125
|
+
}
|
|
126
|
+
.select-all-container[data-v-57cfd397] {
|
|
127
|
+
font-size: 14px;
|
|
128
|
+
padding: 0 16px;
|
|
129
|
+
margin: 10px 0;
|
|
130
|
+
display: flex;
|
|
131
|
+
justify-content: flex-end;
|
|
132
|
+
align-items: center;
|
|
133
|
+
}
|
|
134
|
+
.select-all-container .van-checkbox[data-v-57cfd397] {
|
|
135
|
+
margin-left: auto;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/* 新增:调整方形复选框的边距 */
|
|
139
|
+
.van-checkbox--square[data-v-57cfd397] {
|
|
140
|
+
margin-left: 8px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
/* // 修改 confirmation-group 和 confirmation-item 的样式 */
|
|
145
|
+
.confirmation-group[data-v-40a09897] {
|
|
146
|
+
padding: 0 16px;
|
|
147
|
+
--van-checkbox-disabled-icon-color: black;
|
|
148
|
+
}
|
|
149
|
+
.confirmation-item[data-v-40a09897] {
|
|
150
|
+
padding: 12px 16px;
|
|
151
|
+
margin: 0 -16px;
|
|
152
|
+
border-bottom: 1px solid #f5f5f5;
|
|
153
|
+
/* 禁用状态样式 */
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* // 在下方添加媒体查询适配小屏幕 */
|
|
157
|
+
@media (max-width: 320px) {
|
|
158
|
+
.confirmation-item[data-v-40a09897] {
|
|
159
|
+
padding: 12px 8px;
|
|
160
|
+
margin: 0 -8px;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
.confirmation-item[data-v-40a09897]:last-child {
|
|
164
|
+
border-bottom: none;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* 新增样式 */
|
|
168
|
+
.confirmation-tips[data-v-40a09897] {
|
|
169
|
+
padding: 12px 16px;
|
|
170
|
+
background: #f0faff;
|
|
171
|
+
border-radius: 8px;
|
|
172
|
+
margin: 10px 16px;
|
|
173
|
+
display: flex;
|
|
174
|
+
align-items: center;
|
|
175
|
+
color: #1989fa;
|
|
176
|
+
font-size: 13px;
|
|
177
|
+
border: 1px solid #d9efff;
|
|
178
|
+
}
|
|
179
|
+
.confirmation-tips .van-icon[data-v-40a09897] {
|
|
180
|
+
margin-right: 8px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/* 新增字体继承样式 */
|
|
184
|
+
.confirmation-group[data-v-40a09897] {
|
|
185
|
+
font-size: inherit; /* 继承父级字体大小 */
|
|
186
|
+
}
|
|
187
|
+
.option-text[data-v-40a09897] {
|
|
188
|
+
font-size: 14px; /* 明确指定字体大小 */
|
|
189
|
+
line-height: 1.5; /* 保持行高一致 */
|
|
190
|
+
/* color:black; */
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/* 适配移动端的字体调整 */
|
|
194
|
+
@media (max-width: 375px) {
|
|
195
|
+
.option-text[data-v-40a09897] {
|
|
196
|
+
font-size: 13px;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/* 新增禁用状态样式 */
|
|
201
|
+
.custom-checkbox[data-v-40a09897]:disabled .--van-checkbox__icon {
|
|
202
|
+
background-color: #f5f5f5;
|
|
203
|
+
border-color: #ebedf0;
|
|
204
|
+
transition: all 0.3s;
|
|
205
|
+
}
|
|
206
|
+
.custom-checkbox[data-v-40a09897]:disabled .van-checkbox__icon--checked {
|
|
207
|
+
background-color: #1989fa;
|
|
208
|
+
border-color: #1989fa;
|
|
209
|
+
opacity: 0.7;
|
|
210
|
+
}
|
|
211
|
+
.van-checkbox--disabled[data-v-40a09897] .option-text {
|
|
212
|
+
color: #969799;
|
|
213
|
+
}
|
|
214
|
+
.van-checkbox--disabled.van-checkbox--checked[data-v-40a09897] .option-text {
|
|
215
|
+
color: #1989fa;
|
|
216
|
+
opacity: 0.8;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.project-selector[data-v-dbc5bf54] {
|
|
220
|
+
[data-v-dbc5bf54] .van-cell {
|
|
221
|
+
align-items: center;
|
|
222
|
+
}
|
|
223
|
+
[data-v-dbc5bf54] .van-field__label {
|
|
224
|
+
width: 90px;
|
|
225
|
+
flex: none;
|
|
226
|
+
}
|
|
227
|
+
.readonly-field[data-v-dbc5bf54] {
|
|
228
|
+
[data-v-dbc5bf54] .van-field__control {
|
|
229
|
+
color: #323233;
|
|
230
|
+
/* 修改文字颜色与普通字段一致 */
|
|
231
|
+
padding-right: 16px;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/* 添加必填星号对齐 */
|
|
235
|
+
&.van-field--required[data-v-dbc5bf54] {
|
|
236
|
+
[data-v-dbc5bf54] .van-field__label::before {
|
|
237
|
+
margin-right: 4px;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/* 统一字段间距 */
|
|
243
|
+
.readonly-field[data-v-dbc5bf54] {
|
|
244
|
+
margin: 4px 0;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.department-popup[data-v-73eb43f3] {
|
|
249
|
+
width: 100%;
|
|
250
|
+
height: 60vh;
|
|
251
|
+
border-radius: 16px 16px 0 0;
|
|
252
|
+
}
|
|
253
|
+
.popup-container[data-v-73eb43f3] {
|
|
254
|
+
display: flex;
|
|
255
|
+
flex-direction: column;
|
|
256
|
+
flex: 1;
|
|
257
|
+
height: 100%;
|
|
258
|
+
}
|
|
259
|
+
.picker-header[data-v-73eb43f3] {
|
|
260
|
+
display: flex;
|
|
261
|
+
align-items: center;
|
|
262
|
+
padding: 12px;
|
|
263
|
+
border-bottom: 1px solid #ebedf0;
|
|
264
|
+
gap: 8px;
|
|
265
|
+
background: #fff;
|
|
266
|
+
/* flex-shrink: 0; */
|
|
267
|
+
position: sticky;
|
|
268
|
+
top: 0;
|
|
269
|
+
z-index: 999;
|
|
270
|
+
height: 56px;
|
|
271
|
+
/* 固定头部高度 */
|
|
272
|
+
flex-shrink: 0;
|
|
273
|
+
/* 防止头部被压缩 */
|
|
274
|
+
}
|
|
275
|
+
.scroll-container[data-v-73eb43f3] {
|
|
276
|
+
flex: 1;
|
|
277
|
+
height: 0;
|
|
278
|
+
overflow-y: auto;
|
|
279
|
+
-webkit-overflow-scrolling: touch;
|
|
280
|
+
/* height: calc(80vh - 170px); */
|
|
281
|
+
/* 计算方式:总高度(80vh) - 头部高度(56px) - 搜索框高度(52px) */
|
|
282
|
+
position: relative;
|
|
283
|
+
top: -1px;
|
|
284
|
+
}
|
|
285
|
+
.back-button[data-v-73eb43f3] {
|
|
286
|
+
margin-right: 8px;
|
|
287
|
+
}
|
|
288
|
+
.current-path[data-v-73eb43f3] {
|
|
289
|
+
flex: 1;
|
|
290
|
+
font-size: 14px;
|
|
291
|
+
color: #323233;
|
|
292
|
+
white-space: nowrap;
|
|
293
|
+
overflow: hidden;
|
|
294
|
+
text-overflow: ellipsis;
|
|
295
|
+
}
|
|
296
|
+
.action-buttons[data-v-73eb43f3] {
|
|
297
|
+
display: flex;
|
|
298
|
+
gap: 8px;
|
|
299
|
+
margin-left: auto;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* .scroll-container {
|
|
303
|
+
flex: 1;
|
|
304
|
+
overflow-y: auto;
|
|
305
|
+
-webkit-overflow-scrolling: touch;
|
|
306
|
+
} */
|
|
307
|
+
.cell-content[data-v-73eb43f3] {
|
|
308
|
+
display: flex;
|
|
309
|
+
align-items: center;
|
|
310
|
+
gap: 12px;
|
|
311
|
+
}
|
|
312
|
+
.circle-selector[data-v-73eb43f3] {
|
|
313
|
+
width: 20px;
|
|
314
|
+
height: 20px;
|
|
315
|
+
border: 1px solid #ebedf0;
|
|
316
|
+
border-radius: 50%;
|
|
317
|
+
display: flex;
|
|
318
|
+
align-items: center;
|
|
319
|
+
justify-content: center;
|
|
320
|
+
transition: all 0.2s;
|
|
321
|
+
flex-shrink: 0;
|
|
322
|
+
}
|
|
323
|
+
.circle-selector.selected[data-v-73eb43f3] {
|
|
324
|
+
background-color: #1989fa;
|
|
325
|
+
border-color: #1989fa;
|
|
326
|
+
}
|
|
327
|
+
.circle-selector.selected .van-icon[data-v-73eb43f3] {
|
|
328
|
+
color: white;
|
|
329
|
+
font-size: 14px;
|
|
330
|
+
}
|
|
331
|
+
.van-cell__right-icon[data-v-73eb43f3] {
|
|
332
|
+
color: #969799;
|
|
333
|
+
font-size: 16px;
|
|
334
|
+
margin-left: 8px;
|
|
335
|
+
}
|
|
336
|
+
.name[data-v-73eb43f3] {
|
|
337
|
+
flex: 1;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
text-overflow: ellipsis;
|
|
340
|
+
white-space: nowrap;
|
|
341
|
+
}
|
|
342
|
+
.cancel-btn[data-v-73eb43f3] {
|
|
343
|
+
color: #969799;
|
|
344
|
+
}
|
|
345
|
+
.search-field[data-v-73eb43f3] {
|
|
346
|
+
background: #fff;
|
|
347
|
+
padding: 10px 16px;
|
|
348
|
+
border-bottom: 1px solid #ebedf0;
|
|
349
|
+
position: sticky;
|
|
350
|
+
top: 0;
|
|
351
|
+
z-index: 999;
|
|
352
|
+
margin-bottom: 10px;
|
|
353
|
+
flex-shrink: 0;
|
|
354
|
+
/* 防止压缩 */
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.user-popup[data-v-6c4b4fc8] {
|
|
358
|
+
height: 60vh;
|
|
359
|
+
width: 100%;
|
|
360
|
+
}
|
|
361
|
+
.picker-header[data-v-6c4b4fc8] {
|
|
362
|
+
padding: 10px;
|
|
363
|
+
border-bottom: 1px solid #ebedf0;
|
|
364
|
+
display: flex;
|
|
365
|
+
justify-content: space-between;
|
|
366
|
+
align-items: center;
|
|
367
|
+
}
|
|
368
|
+
.scroll-container[data-v-6c4b4fc8] {
|
|
369
|
+
height: calc(80vh - 150px);
|
|
370
|
+
overflow-y: auto;
|
|
371
|
+
}
|
|
372
|
+
.search-container[data-v-6c4b4fc8] {
|
|
373
|
+
padding: 10px;
|
|
374
|
+
background: #fff;
|
|
375
|
+
display: flex;
|
|
376
|
+
align-items: center;
|
|
377
|
+
gap: 8px;
|
|
378
|
+
}
|
|
379
|
+
[data-v-6c4b4fc8] .search-container .van-search {
|
|
380
|
+
flex: 1;
|
|
381
|
+
}
|
|
382
|
+
.search-btn[data-v-6c4b4fc8] {
|
|
383
|
+
flex-shrink: 0;
|
|
384
|
+
}
|
|
385
|
+
.select-all-container[data-v-6c4b4fc8] {
|
|
386
|
+
font-size: 14px;
|
|
387
|
+
padding: 0 16px;
|
|
388
|
+
margin: 10px 0;
|
|
389
|
+
display: flex;
|
|
390
|
+
justify-content: flex-end;
|
|
391
|
+
align-items: center;
|
|
392
|
+
}
|
|
393
|
+
[data-v-6c4b4fc8] .van-checkbox__icon--square {
|
|
394
|
+
border-radius: 4px;
|
|
395
|
+
}
|
|
396
|
+
[data-v-6c4b4fc8] .van-checkbox__label {
|
|
397
|
+
margin-left: 8px;
|
|
398
|
+
}
|
|
399
|
+
[data-v-6c4b4fc8] .van-radio-group .van-cell,[data-v-6c4b4fc8] .van-checkbox-group .van-cell {
|
|
400
|
+
align-items: center;
|
|
401
|
+
}
|
|
402
|
+
.current-path[data-v-6c4b4fc8] {
|
|
403
|
+
flex: 1;
|
|
404
|
+
font-size: 14px;
|
|
405
|
+
color: #323233;
|
|
406
|
+
white-space: nowrap;
|
|
407
|
+
overflow: hidden;
|
|
408
|
+
text-overflow: ellipsis;
|
|
409
|
+
}
|
|
410
|
+
.header-right[data-v-6c4b4fc8] {
|
|
411
|
+
display: flex;
|
|
412
|
+
gap: 8px;
|
|
413
|
+
margin-left: auto;
|
|
414
|
+
}
|
|
415
|
+
.cancel-btn[data-v-6c4b4fc8] {
|
|
416
|
+
color: #969799;
|
|
417
|
+
margin-right: 5px;
|
|
418
|
+
}
|
|
419
|
+
[data-v-7a64f836] .label {
|
|
420
|
+
color: #000 !important;
|
|
421
|
+
}
|
|
422
|
+
[data-v-7a64f836] .van-field__control:disabled {
|
|
423
|
+
color: #000 !important;
|
|
424
|
+
cursor: not-allowed;
|
|
425
|
+
opacity: 1;
|
|
426
|
+
-webkit-text-fill-color: #000;
|
|
427
|
+
}.widget[data-v-d659bcb6] {
|
|
428
|
+
text-align: center;
|
|
429
|
+
}
|
|
430
|
+
.widget .btn[data-v-d659bcb6] {
|
|
431
|
+
position: fixed;
|
|
432
|
+
bottom: 1rem;
|
|
433
|
+
left: 0;
|
|
434
|
+
right: 0;
|
|
435
|
+
margin: auto auto;
|
|
436
|
+
color: white;
|
|
437
|
+
font-size: 14px;
|
|
438
|
+
background: rgb(58, 136, 255);
|
|
439
|
+
padding: 8px 35px;
|
|
440
|
+
width: 100px;
|
|
441
|
+
text-align: center;
|
|
442
|
+
display: inline-block;
|
|
443
|
+
border-radius: 2px;
|
|
444
|
+
}[data-v-78f50d19] .label {
|
|
445
|
+
color: #000 !important;
|
|
446
|
+
}
|
|
447
|
+
[data-v-78f50d19] .van-field__control:disabled {
|
|
448
|
+
color: #000 !important;
|
|
449
|
+
cursor: not-allowed;
|
|
450
|
+
opacity: 1;
|
|
451
|
+
-webkit-text-fill-color: #000;
|
|
452
|
+
}
|
|
453
|
+
.user-popup[data-v-a489ca4c] {
|
|
454
|
+
width: 100%;
|
|
455
|
+
overflow: hidden;
|
|
456
|
+
}
|
|
457
|
+
.department-selector[data-v-a489ca4c] {
|
|
458
|
+
padding: 10px;
|
|
459
|
+
}
|
|
460
|
+
.search-buttons[data-v-a489ca4c] {
|
|
461
|
+
display: flex;
|
|
462
|
+
gap: 10px;
|
|
463
|
+
}
|
|
464
|
+
.clear-btn[data-v-a489ca4c] {
|
|
465
|
+
background-color: #f2f3f5;
|
|
466
|
+
border: none;
|
|
467
|
+
border-radius: 4px;
|
|
468
|
+
padding: 4px 8px;
|
|
469
|
+
font-size: 14px;
|
|
470
|
+
}
|
|
471
|
+
.confirm-btn[data-v-a489ca4c] {
|
|
472
|
+
background-color: #1989fa;
|
|
473
|
+
color: white;
|
|
474
|
+
border: none;
|
|
475
|
+
border-radius: 4px;
|
|
476
|
+
padding: 4px 8px;
|
|
477
|
+
font-size: 14px;
|
|
478
|
+
}
|
|
479
|
+
.no-results[data-v-a489ca4c] {
|
|
480
|
+
text-align: center;
|
|
481
|
+
padding: 20px;
|
|
482
|
+
color: #969799;
|
|
483
|
+
}
|
|
484
|
+
.picker-header[data-v-a489ca4c] {
|
|
485
|
+
padding: 10px;
|
|
486
|
+
border-bottom: 1px solid #ebedf0;
|
|
487
|
+
display: flex;
|
|
488
|
+
justify-content: space-between;
|
|
489
|
+
align-items: center;
|
|
490
|
+
}
|
|
491
|
+
.current-path[data-v-a489ca4c] {
|
|
492
|
+
flex: 1;
|
|
493
|
+
font-size: 14px;
|
|
494
|
+
color: #323233;
|
|
495
|
+
white-space: nowrap;
|
|
496
|
+
overflow: hidden;
|
|
497
|
+
text-overflow: ellipsis;
|
|
498
|
+
}
|
|
499
|
+
.header-right[data-v-a489ca4c] {
|
|
500
|
+
display: flex;
|
|
501
|
+
gap: 8px;
|
|
502
|
+
margin-left: auto;
|
|
503
|
+
}
|
|
504
|
+
.cancel-btn[data-v-a489ca4c] {
|
|
505
|
+
color: #969799;
|
|
506
|
+
margin-right: 5px;
|
|
507
|
+
}
|
|
508
|
+
.scroll-container[data-v-a489ca4c] {
|
|
509
|
+
height: calc(80vh - 150px);
|
|
510
|
+
overflow-y: auto;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.user-popup[data-v-78c036bd] {
|
|
514
|
+
width: 100%;
|
|
515
|
+
overflow: hidden;
|
|
516
|
+
}
|
|
517
|
+
.department-selector[data-v-78c036bd] {
|
|
518
|
+
padding: 10px;
|
|
519
|
+
}
|
|
520
|
+
.search-buttons[data-v-78c036bd] {
|
|
521
|
+
display: flex;
|
|
522
|
+
gap: 10px;
|
|
523
|
+
}
|
|
524
|
+
.clear-btn[data-v-78c036bd] {
|
|
525
|
+
background-color: #f2f3f5;
|
|
526
|
+
border: none;
|
|
527
|
+
border-radius: 4px;
|
|
528
|
+
padding: 4px 8px;
|
|
529
|
+
font-size: 14px;
|
|
530
|
+
}
|
|
531
|
+
.confirm-btn[data-v-78c036bd] {
|
|
532
|
+
background-color: #1989fa;
|
|
533
|
+
color: white;
|
|
534
|
+
border: none;
|
|
535
|
+
border-radius: 4px;
|
|
536
|
+
padding: 4px 8px;
|
|
537
|
+
font-size: 14px;
|
|
538
|
+
}
|
|
539
|
+
.no-results[data-v-78c036bd] {
|
|
540
|
+
text-align: center;
|
|
541
|
+
padding: 20px;
|
|
542
|
+
color: #969799;
|
|
543
|
+
}
|
|
544
|
+
.picker-header[data-v-78c036bd] {
|
|
545
|
+
padding: 10px;
|
|
546
|
+
border-bottom: 1px solid #ebedf0;
|
|
547
|
+
display: flex;
|
|
548
|
+
justify-content: space-between;
|
|
549
|
+
align-items: center;
|
|
550
|
+
}
|
|
551
|
+
.current-path[data-v-78c036bd] {
|
|
552
|
+
flex: 1;
|
|
553
|
+
font-size: 14px;
|
|
554
|
+
color: #323233;
|
|
555
|
+
white-space: nowrap;
|
|
556
|
+
overflow: hidden;
|
|
557
|
+
text-overflow: ellipsis;
|
|
558
|
+
}
|
|
559
|
+
.header-right[data-v-78c036bd] {
|
|
560
|
+
display: flex;
|
|
561
|
+
gap: 8px;
|
|
562
|
+
margin-left: auto;
|
|
563
|
+
}
|
|
564
|
+
.cancel-btn[data-v-78c036bd] {
|
|
565
|
+
color: #969799;
|
|
566
|
+
margin-right: 5px;
|
|
567
|
+
}
|
|
568
|
+
.scroll-container[data-v-78c036bd] {
|
|
569
|
+
height: calc(80vh - 150px);
|
|
570
|
+
overflow-y: auto;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.user-item[data-v-4022cd82]{
|
|
574
|
+
margin:3px;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.user[data-v-58929b5a]{
|
|
578
|
+
padding:4px 8px;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.widget[data-v-5ebf8c56] {
|
|
582
|
+
position: relative;
|
|
583
|
+
display: flex;
|
|
584
|
+
flex-direction: column;
|
|
585
|
+
align-items: center;
|
|
586
|
+
justify-content: space-around;
|
|
587
|
+
padding: 20px;
|
|
588
|
+
background: linear-gradient(to right, #4a90e2, #87ceeb);
|
|
589
|
+
border-radius: 10px;
|
|
590
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
591
|
+
.user-avatar[data-v-5ebf8c56] {
|
|
592
|
+
margin-bottom: 15px;
|
|
593
|
+
}
|
|
594
|
+
.user-info[data-v-5ebf8c56] {
|
|
595
|
+
display: flex;
|
|
596
|
+
align-items: center;
|
|
597
|
+
justify-content: space-around;
|
|
598
|
+
margin-bottom: 15px;
|
|
599
|
+
.user-info-item[data-v-5ebf8c56] {
|
|
600
|
+
font-size: 16px;
|
|
601
|
+
line-height: 22px;
|
|
602
|
+
color: #fff;
|
|
603
|
+
text-align: center;
|
|
604
|
+
padding: 0 3px;
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
.space[data-v-5ebf8c56] {
|
|
608
|
+
min-height: 10px;
|
|
609
|
+
flex: 1;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
/* 添加退出按钮样式 */
|
|
613
|
+
.logout-button[data-v-5ebf8c56] {
|
|
614
|
+
width: 70px;
|
|
615
|
+
height: 30px;
|
|
616
|
+
position: absolute;
|
|
617
|
+
top: 20px;
|
|
618
|
+
right: 20px;
|
|
619
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
620
|
+
color: white;
|
|
621
|
+
border: none;
|
|
622
|
+
border-radius: 15px;
|
|
623
|
+
padding: 5px 15px;
|
|
624
|
+
cursor: pointer;
|
|
625
|
+
font-size: 14px;
|
|
626
|
+
transition: background-color 0.3s;
|
|
627
|
+
}
|
|
628
|
+
.logout-button[data-v-5ebf8c56]:hover {
|
|
629
|
+
background-color: rgba(255, 255, 255, 0.4);
|
|
630
|
+
}
|
|
631
|
+
.user-jobs[data-v-5ebf8c56] {
|
|
632
|
+
display: flex;
|
|
633
|
+
justify-content: center;
|
|
634
|
+
gap: 15px;
|
|
635
|
+
width: 100%;
|
|
636
|
+
max-width: 300px;
|
|
637
|
+
.job-item[data-v-5ebf8c56] {
|
|
638
|
+
padding: 5px 10px;
|
|
639
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
640
|
+
border-radius: 20px;
|
|
641
|
+
font-size: 12px;
|
|
642
|
+
color: #fff;
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.widget[data-v-47f94e12] {
|
|
648
|
+
/* 统一字段间距 */
|
|
649
|
+
}
|
|
650
|
+
.widget[data-v-47f94e12] .van-cell {
|
|
651
|
+
align-items: center;
|
|
652
|
+
}
|
|
653
|
+
.widget[data-v-47f94e12] .van-field__label {
|
|
654
|
+
width: 90px;
|
|
655
|
+
flex: none;
|
|
656
|
+
}
|
|
657
|
+
.widget .readonly-field[data-v-47f94e12] {
|
|
658
|
+
/* 添加必填星号对齐 */
|
|
659
|
+
}
|
|
660
|
+
.widget .readonly-field[data-v-47f94e12] .van-field__control {
|
|
661
|
+
color: #323233;
|
|
662
|
+
/* 修改文字颜色与普通字段一致 */
|
|
663
|
+
padding-right: 16px;
|
|
664
|
+
}
|
|
665
|
+
.widget .readonly-field.van-field--required[data-v-47f94e12] .van-field__label::before {
|
|
666
|
+
margin-right: 4px;
|
|
667
|
+
}
|
|
668
|
+
.widget .readonly-field[data-v-47f94e12] {
|
|
669
|
+
margin: 4px 0;
|
|
670
|
+
}.widget[data-v-68bdd6bc] {
|
|
671
|
+
background-color: white;
|
|
672
|
+
border-radius: 8px;
|
|
673
|
+
box-shadow: var(--van-dropdown-menu-shadow);
|
|
674
|
+
color: 14px;
|
|
675
|
+
}
|
|
676
|
+
.widget .card-box[data-v-68bdd6bc] {
|
|
677
|
+
padding-bottom: 8px;
|
|
678
|
+
}
|
|
679
|
+
.widget .card-box .card-header[data-v-68bdd6bc] {
|
|
680
|
+
display: flex;
|
|
681
|
+
align-items: center;
|
|
682
|
+
justify-content: space-between;
|
|
683
|
+
padding: 15px 10px;
|
|
684
|
+
border-bottom: 1px solid #eee;
|
|
685
|
+
}
|
|
686
|
+
.widget .card-box .card-header .card-sum[data-v-68bdd6bc] {
|
|
687
|
+
flex: 1;
|
|
688
|
+
font-size: 14px;
|
|
689
|
+
text-align: left;
|
|
690
|
+
}
|
|
691
|
+
.widget .card-box .card-header .user-state[data-v-68bdd6bc] {
|
|
692
|
+
margin-right: 1px;
|
|
693
|
+
}
|
|
694
|
+
[data-v-68bdd6bc] .van-cell__value {
|
|
695
|
+
flex: 2 !important;
|
|
696
|
+
}
|
|
697
|
+
[data-v-68bdd6bc] .van-cell__title {
|
|
698
|
+
font-size: 12px !important;
|
|
699
|
+
color: #666 !important;
|
|
700
|
+
text-align: left !important;
|
|
701
|
+
}
|
|
702
|
+
[data-v-68bdd6bc] .van-cell__value {
|
|
703
|
+
font-size: 12px !important;
|
|
704
|
+
color: #888 !important;
|
|
705
|
+
}
|
|
706
|
+
[data-v-68bdd6bc] .van-cell {
|
|
707
|
+
padding: 2px 10px !important;
|
|
708
|
+
}[data-v-d8d21ade] .label {
|
|
709
|
+
color: #000 !important;
|
|
710
|
+
}
|
|
711
|
+
[data-v-d8d21ade] .van-field__control:disabled {
|
|
712
|
+
color: #000 !important;
|
|
713
|
+
cursor: not-allowed;
|
|
714
|
+
opacity: 1;
|
|
715
|
+
-webkit-text-fill-color: #000;
|
|
716
|
+
}.item-box[data-v-2bd62a7a] {
|
|
717
|
+
position: relative;
|
|
718
|
+
padding-bottom: 5px;
|
|
719
|
+
border-bottom: 1px solid #e1e1e1;
|
|
720
|
+
}
|
|
721
|
+
.actionbar[data-v-2bd62a7a] {
|
|
722
|
+
display: flex;
|
|
723
|
+
justify-content: center;
|
|
724
|
+
margin-top: 5px;
|
|
725
|
+
}
|
|
726
|
+
[data-v-2bd62a7a] .label {
|
|
727
|
+
color: #000 !important;
|
|
728
|
+
}
|
|
729
|
+
[data-v-2bd62a7a] .van-field__control--custom {
|
|
730
|
+
display: block;
|
|
731
|
+
}
|
|
732
|
+
.popup-box[data-v-571370f8] {
|
|
733
|
+
min-height: 20vh;
|
|
734
|
+
max-height: 40vh;
|
|
735
|
+
overflow-y: auto;
|
|
736
|
+
.checkbox-list[data-v-571370f8] {
|
|
737
|
+
padding: 15px 25px;
|
|
738
|
+
[data-v-571370f8] .van-checkbox__label {
|
|
739
|
+
flex: 1;
|
|
740
|
+
text-align: right;
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
.select-all-container[data-v-571370f8] {
|
|
745
|
+
font-size: 14px;
|
|
746
|
+
padding: 15px 25px 0 15px;
|
|
747
|
+
margin: 10px 0;
|
|
748
|
+
display: flex;
|
|
749
|
+
justify-content: flex-end;
|
|
750
|
+
align-items: center;
|
|
751
|
+
}
|
|
752
|
+
.select-all-container .van-checkbox[data-v-571370f8] {
|
|
753
|
+
margin-left: auto;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
/* 新增:调整方形复选框的边距 */
|
|
757
|
+
.van-checkbox--square[data-v-571370f8] {
|
|
758
|
+
margin-left: 8px;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.select-item[data-v-6744b874]{
|
|
762
|
+
margin:3px;
|
|
763
|
+
}
|