yyb
8 天以前 e6080ac8ad345f8cd7378c7cfa5f0f70f80e3926
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
<template>
    <view class="upkeep-add">
        <!-- 使用通用页面头部组件 -->
        <PageHeader :title="operationType === 'edit' ? '编辑保养计划' : '新增保养计划'" @back="goBack" />
        
        <!-- 表单内容 -->
        <u-form ref="formRef" :model="form" :rules="formRules" label-width="110px">
            <!-- 基本信息 -->
            <u-form-item label="设备名称" prop="deviceNameText" required border-bottom>
                <u-input
                    v-model="form.deviceNameText"
                    placeholder="请选择设备名称"
                    readonly
                    @click="showDevicePicker"
                    clearable
                />
                <template #right>
                    <u-icon name="scan" @click="startScan" class="scan-icon" />
                </template>
            </u-form-item>
            
            <u-form-item label="规格型号" prop="deviceModel" border-bottom>
                <u-input
                    v-model="form.deviceModel"
                    placeholder="请输入规格型号"
                    readonly
                    clearable
                />
            </u-form-item>
            
            <u-form-item label="计划保养日期" prop="maintenancePlanTime" required border-bottom>
                <u-input
                    v-model="form.maintenancePlanTime"
                    placeholder="请选择计划保养日期"
                    readonly
                    @click="showDatePicker"
                    clearable
                />
                <template #right>
                    <u-icon name="arrow-right" @click="showDatePicker" />
                </template>
            </u-form-item>
 
            <u-form-item label="保养人" prop="maintenancePerson" required border-bottom>
                <u-input
                    v-model="form.maintenancePerson"
                    placeholder="请选择保养人"
                    readonly
                    @click="showPersonPicker"
                    clearable
                />
                <template #right>
                    <u-icon name="arrow-right" @click="showPersonPicker" />
                </template>
            </u-form-item>
            
            <u-form-item label="保养部位" prop="maintenanceLocation" required border-bottom>
                <u-input
                    v-model="form.maintenanceLocation"
                    placeholder="请输入保养部位"
                    clearable
                />
            </u-form-item>
 
            <u-form-item label="保养项目" prop="maintenanceItems" required border-bottom>
                <u-input
                    v-model="form.maintenanceItems"
                    placeholder="请输入保养项目"
                    clearable
                />
            </u-form-item>
 
            <u-form-item label="附件" border-bottom>
                <view class="attachment-upload">
                    <view class="upload-buttons">
                        <u-button
                            type="primary"
                            @click="chooseAttachment('camera')"
                            :loading="uploading"
                            :disabled="uploading"
                            :customStyle="{ marginRight: '10px', flex: 1 }"
                        >
                            <u-icon name="camera" size="18" color="#fff" style="margin-right: 5px;"></u-icon>
                            {{ uploading ? '上传中...' : '拍照' }}
                        </u-button>
                        <u-button
                            type="success"
                            @click="chooseAttachment('album')"
                            :loading="uploading"
                            :disabled="uploading"
                            :customStyle="{ flex: 1 }"
                        >
                            <u-icon name="photo" size="18" color="#fff" style="margin-right: 5px;"></u-icon>
                            {{ uploading ? '上传中...' : '相册' }}
                        </u-button>
                    </view>
                    <view v-if="attachmentList.length" class="attachment-list">
                        <view
                            v-for="(file, index) in attachmentList"
                            :key="file.id || index"
                            class="attachment-item"
                        >
                            <image
                                :src="getFileAccessUrl(file)"
                                mode="aspectFill"
                                class="attachment-preview"
                                @click="previewAttachment(index)"
                            />
                            <view class="attachment-delete" @click="removeAttachment(file, index)">
                                <u-icon name="close" size="12" color="#fff" />
                            </view>
                        </view>
                    </view>
                    <view v-else class="attachment-empty">暂无附件,可拍照或从相册选择</view>
                </view>
            </u-form-item>
            
            <!-- 提交按钮 -->
            <view class="footer-btns">
                <u-button class="cancel-btn" @click="goBack">取消</u-button>
                <u-button class="save-btn" @click="sendForm" :loading="loading">保存</u-button>
            </view>
        </u-form>
 
        <!-- 设备选择器 -->
        <up-action-sheet
            :show="showDevice"
            :actions="deviceActions"
            title="选择设备"
            @select="onDeviceConfirm"
            @close="showDevice = false"
        />
        <!-- 保养人选择器 -->
        <up-action-sheet
            :show="showPerson"
            :actions="personActions"
            title="选择保养人"
            @select="onPersonConfirm"
            @close="showPerson = false"
        />
<up-datetime-picker
            :show="showDate"
            v-model="pickerDateValue"
            @confirm="onDateConfirm"
            @cancel="showDate = false"
            mode="date"
        />
    
    </view>
</template>
 
<script setup>
import { ref, computed, onMounted, onUnmounted } from 'vue';
import { onShow, onUnload } from '@dcloudio/uni-app';
import PageHeader from '@/components/PageHeader.vue';
import config from '@/config';
import { getToken } from '@/utils/auth';
import { getDeviceLedger } from '@/api/equipmentManagement/ledger';
import {
    addUpkeep,
    editUpkeep,
    getUpkeepById,
    listMaintenanceTaskFiles,
    addMaintenanceTaskFile,
    delMaintenanceTaskFile,
} from '@/api/equipmentManagement/upkeep';
import { userListNoPageByTenantId } from '@/api/system/user';
import useUserStore from '@/store/modules/user';
import dayjs from "dayjs";
import { formatDateToYMD } from '@/utils/ruoyi';
 
const userStore = useUserStore();
 
defineOptions({
    name: "设备保养计划表单",
});
const showToast = (message) => {
  uni.showToast({
    title: message,
    icon: 'none'
  })
}
 
const normalizeId = (raw) => {
    if (raw === null || raw === undefined) return undefined;
    const val = String(raw).trim();
    if (!val || val === 'undefined' || val === 'null') return undefined;
    return val;
};
 
// 表单引用
const formRef = ref(null);
const operationType = ref('add');
const loading = ref(false);
const uploading = ref(false);
const attachmentList = ref([]);
const showDevice = ref(false);
const showPerson = ref(false);
const showDate = ref(false);
const pickerDateValue = ref(Date.now());
const currentDate = ref([new Date().getFullYear(), new Date().getMonth() + 1, new Date().getDate()]);
 
// 设备选项
const deviceOptions = ref([]);
const deviceNameText = ref('');
// 保养人选项
const userOptions = ref([]);
// 转换为 action-sheet 需要的格式
const deviceActions = computed(() => {
    return deviceOptions.value.map(item => ({
        text: item.deviceName,
        value: item.id,
        data: item
    }));
});
const personActions = computed(() => {
    return userOptions.value.map(item => ({
        name: item.nickName,
        value: item.userId,
    }));
});
 
// 扫码相关状态
const isScanning = ref(false);
const scanTimer = ref(null);
 
// 表单验证规则
const formRules = {
    deviceLedgerId: [{ required: true, trigger: "change", message: "请选择设备名称" }],
    maintenancePlanTime: [{ required: true, trigger: "change", message: "请选择计划保养日期" }],
    maintenancePerson: [{ required: true, trigger: "change", message: "请选择保养人" }],
    maintenanceLocation: [{ required: true, trigger: "blur", message: "请输入保养部位" }],
    maintenanceItems: [{ required: true, trigger: "blur", message: "请输入保养项目" }],
};
 
// 使用 ref 声明表单数据
const form = ref({
    deviceLedgerId: undefined, // 设备ID
    deviceModel: undefined, // 规格型号
    maintenancePlanTime: dayjs().format("YYYY-MM-DD"), // 计划保养日期
    maintenancePerson: userStore.nickName || undefined, // 保养人
    maintenanceLocation: undefined, // 保养部位
    maintenanceItems: undefined, // 保养项目
});
 
// 加载设备列表
const loadDeviceName = async () => {
    try {
        const { data } = await getDeviceLedger();
        deviceOptions.value = data || [];
    } catch (e) {
        showToast('获取设备列表失败');
    }
};
 
// 加载保养人列表
const loadUserOptions = async () => {
    try {
        const { data } = await userListNoPageByTenantId();
        userOptions.value = data || [];
    } catch (e) {
        showToast('获取保养人列表失败');
    }
};
 
// 附件相关
const getFileAccessUrl = (file = {}) => {
    const url = file.url || file.tempFilePath || file.path || '';
    if (!url) return '';
    if (String(url).startsWith('http') || String(url).startsWith('blob:') || String(url).startsWith('file:') || String(url).startsWith('wxfile:')) {
        return url;
    }
    const path = String(url).startsWith('/') ? url : `/${url}`;
    return `${config.fileUrl}${path}`;
};
 
const fetchAttachmentList = async (id) => {
    if (!id) {
        attachmentList.value = [];
        return;
    }
    try {
        const { code, data } = await listMaintenanceTaskFiles({
            current: 1,
            size: 100,
            deviceMaintenanceId: id,
        });
        if (code === 200) {
            attachmentList.value = data?.records || [];
        } else {
            attachmentList.value = [];
        }
    } catch (e) {
        attachmentList.value = [];
    }
};
 
const chooseAttachment = (sourceType) => {
    const source = sourceType === 'camera' ? ['camera'] : ['album'];
    uni.chooseImage({
        count: 9,
        sizeType: ['original', 'compressed'],
        sourceType: source,
        success: (res) => {
            const files = res.tempFiles || [];
            if (!files.length) return;
            const id = getPageId();
            if (id) {
                uploadAttachments(files, id);
                return;
            }
            const tempItems = files.map((file, idx) => {
                const filePath = file.path || res.tempFilePaths?.[idx];
                return {
                    id: `temp_${Date.now()}_${idx}`,
                    url: filePath,
                    tempFilePath: filePath,
                    name: file.name || `附件_${Date.now()}_${idx}.jpg`,
                    isTemp: true,
                };
            });
            attachmentList.value = [...attachmentList.value, ...tempItems];
            showToast('已添加,保存计划后自动上传');
        },
        fail: () => {
            showToast('选择图片失败');
        },
    });
};
 
const uploadAttachments = async (files, maintenanceId) => {
    const commonId = normalizeId(maintenanceId);
    if (!commonId) {
        showToast('未获取到保养计划ID,上传失败');
        return;
    }
    const token = getToken();
    if (!token) {
        showToast('登录已失效,请重新登录');
        return;
    }
    uploading.value = true;
    try {
        for (const file of files) {
            const filePath = file.path || file.tempFilePath;
            if (!filePath) continue;
            await new Promise((resolve, reject) => {
                uni.uploadFile({
                    url: `${config.baseUrl}/file/upload`,
                    filePath,
                    name: 'file',
                    header: {
                        Authorization: `Bearer ${token}`,
                    },
                    success: (uploadRes) => {
                        try {
                            const parsed = JSON.parse(uploadRes.data || '{}');
                            if (uploadRes.statusCode === 200 && parsed.code === 200) {
                                const fileName = file.name || filePath.split('/').pop();
                                addMaintenanceTaskFile({
                                    name: fileName,
                                    deviceMaintenanceId: commonId,
                                    url: parsed.data?.tempPath || parsed.data?.url || '',
                                })
                                    .then((addRes) => {
                                        if (addRes.code === 200) {
                                            resolve(addRes);
                                        } else {
                                            reject(new Error(addRes.msg || '保存附件信息失败'));
                                        }
                                    })
                                    .catch(reject);
                            } else {
                                reject(new Error(parsed.msg || '上传失败'));
                            }
                        } catch (err) {
                            reject(new Error('上传响应解析失败'));
                        }
                    },
                    fail: () => reject(new Error('上传失败')),
                });
            });
        }
        showToast('上传成功');
        await fetchAttachmentList(commonId);
    } catch (e) {
        showToast(e?.message || '上传失败');
    } finally {
        uploading.value = false;
    }
};
 
const previewAttachment = (index) => {
    const urls = attachmentList.value
        .map((item) => getFileAccessUrl(item))
        .filter(Boolean);
    if (!urls.length) return;
    uni.previewImage({
        urls,
        current: urls[index] || urls[0],
    });
};
 
const removeAttachment = (file, index) => {
    if (!file?.id || file?.isTemp) {
        attachmentList.value.splice(index, 1);
        return;
    }
    uni.showModal({
        title: '提示',
        content: '确认删除该附件吗?',
        success: async (res) => {
            if (!res.confirm) return;
            try {
                const { code } = await delMaintenanceTaskFile(file.id);
                if (code === 200) {
                    attachmentList.value.splice(index, 1);
                    showToast('删除成功');
                } else {
                    showToast('删除失败');
                }
            } catch (e) {
                showToast('删除失败');
            }
        },
    });
};
 
// 加载表单数据(编辑模式)
const loadForm = async (id) => {
    if (id) {
        operationType.value = 'edit';
        try {
            const { code, data } = await getUpkeepById(id);
            if (code == 200) {
                form.value.deviceLedgerId = data.deviceLedgerId;
                form.value.deviceModel = data.deviceModel;
                form.value.maintenancePlanTime = dayjs(data.maintenancePlanTime).format("YYYY-MM-DD");
                form.value.maintenancePerson = data.maintenancePerson;
                form.value.maintenanceLocation = data.maintenanceLocation;
                form.value.maintenanceItems = data.maintenanceItems;
                // 设置设备名称显示
                const device = deviceOptions.value.find(item => item.id === data.deviceLedgerId);
                if (device) {
                    form.value.deviceNameText = device.deviceName;
                }
                await fetchAttachmentList(id);
            }
        } catch (e) {
            showToast('获取详情失败');
        }
    } else {
        // 新增模式
        operationType.value = 'add';
        attachmentList.value = [];
    }
};
 
// 扫描二维码功能
const startScan = () => {
    if (isScanning.value) {
        showToast('正在扫描中,请稍候...');
        return;
    }
    
    // 调用uni-app的扫码API
    uni.scanCode({
        scanType: ['qrCode', 'barCode'],
        success: (res) => {
            handleScanResult(res.result);
        },
        fail: (err) => {
            console.error('扫码失败:', err);
            showToast('扫码失败,请重试');
        }
    });
};
 
// 处理扫码结果
const handleScanResult = (scanResult) => {
    if (!scanResult) {
        showToast('扫码结果为空');
        return;
    }
    
    isScanning.value = true;
    showToast('扫码成功');
    
    // 3秒后处理扫码结果
    scanTimer.value = setTimeout(() => {
        processScanResult(scanResult);
        isScanning.value = false;
    }, 1000);
};
function getDeviceIdByRegExp(url) {
    // 匹配deviceId=后面的数字
    const reg = /deviceId=(\d+)/;
    const match = url.match(reg);
    // 如果匹配到结果,返回数字类型,否则返回null
    return match ? Number(match[1]) : null;
}
// 处理扫码结果并匹配设备
const processScanResult = (scanResult) => {
    const deviceId = getDeviceIdByRegExp(scanResult);
    const matchedDevice = deviceOptions.value.find(item => item.id == deviceId);
    
    if (matchedDevice) {
        // 找到匹配的设备,自动填充
        form.value.deviceLedgerId = matchedDevice.id;
        form.value.deviceNameText = matchedDevice.deviceName;
        form.value.deviceModel = matchedDevice.deviceModel;
        showToast('设备信息已自动填充');
    } else {
        // 未找到匹配的设备
        showToast('未找到匹配的设备,请手动选择');
    }
};
 
// 显示设备选择器
const showDevicePicker = () => {
    showDevice.value = true;
};
 
// 显示保养人选择器
const showPersonPicker = () => {
    if (!userOptions.value.length) {
        showToast('暂无可选保养人');
        return;
    }
    showPerson.value = true;
};
 
// 确认保养人选择
const onPersonConfirm = (selected) => {
    const user = userOptions.value.find(item => item.userId === selected.value);
    form.value.maintenancePerson = user?.nickName || selected.name || '';
    showPerson.value = false;
};
 
// 确认设备选择
const onDeviceConfirm = (selected) => {
    // selected 返回的是选中项
    form.value.deviceLedgerId = selected.value;
        form.value.deviceNameText = selected.name;
    const selectedDevice = deviceOptions.value.find(item => item.id === selected.value);
    if (selectedDevice) {
        form.value.deviceModel = selectedDevice.deviceModel;
    }
    showDevice.value = false;
};
 
// 显示日期选择器
const showDatePicker = () => {
    showDate.value = true;
};
 
// 确认日期选择
const onDateConfirm = (e) => {
    form.value.maintenancePlanTime = formatDateToYMD(e.value);
    showDate.value = false;
};
 
onShow(() => {
    // 页面显示时获取参数
    getPageParams();
});
 
onMounted(() => {
    // 页面加载时获取设备列表、保养人列表和参数
    loadDeviceName();
    loadUserOptions();
    getPageParams();
});
 
// 组件卸载时清理定时器
onUnmounted(() => {
    if (scanTimer.value) {
        clearTimeout(scanTimer.value);
    }
});
 
// 提交表单
const sendForm = async () => {
    try {
        // 手动验证表单
        const valid = await formRef.value.validate();
        if (!valid) return;
        
        loading.value = true;
        const id = getPageId();
        
        // 准备提交数据
        const submitData = { ...form.value };
        // 确保日期格式正确
        if (submitData.maintenancePlanTime && !submitData.maintenancePlanTime.includes(':')) {
            submitData.maintenancePlanTime = submitData.maintenancePlanTime + ' 00:00:00';
        }
        
        const result = id
            ? await editUpkeep({ id: id, ...submitData })
            : await addUpkeep(submitData);
        const { code, data } = result || {};
        
        if (code == 200) {
            if (!id) {
                const newId = data?.id || data?.maintenanceId || data;
                if (newId) {
                    const tempFiles = attachmentList.value
                        .filter((item) => item?.isTemp && (item.tempFilePath || item.url))
                        .map((item) => ({
                            path: item.tempFilePath || item.url,
                            tempFilePath: item.tempFilePath || item.url,
                            name: item.name,
                        }));
                    if (tempFiles.length) {
                        await uploadAttachments(tempFiles, newId);
                    }
                }
            }
            showToast(`${id ? "编辑" : "新增"}计划成功`);
            setTimeout(() => {
                uni.removeStorageSync('repairId');
                uni.navigateBack();
            }, 1500);
        } else {
            loading.value = false;
        }
    } catch (e) {
        loading.value = false;
        showToast('表单验证失败');
    }
};
 
// 返回上一页
const goBack = () => {
    // 清除存储的id
    uni.removeStorageSync('repairId');
    uni.navigateBack();
};
 
// 获取页面ID
const getPageId = () => {
    return normalizeId(uni.getStorageSync('repairId'));
};
 
// 获取页面参数
const getPageParams = () => {
    const id = getPageId();
    if (id) {
        loadForm(id);
    } else {
        operationType.value = 'add';
        attachmentList.value = [];
        loadForm();
    }
};
 
onUnload(() => {
    uni.removeStorageSync('repairId');
});
</script>
 
<style scoped lang="scss">
@import '@/static/scss/form-common.scss';
.upkeep-add {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 5rem;
}
 
.footer-btns {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.75rem 0;
    box-shadow: 0 -0.125rem 0.5rem rgba(0,0,0,0.05);
    z-index: 1000;
}
 
.cancel-btn {
    font-weight: 400;
    font-size: 1rem;
    color: #FFFFFF;
    width: 6.375rem;
    background: #C7C9CC;
    box-shadow: 0 0.25rem 0.625rem 0 rgba(3,88,185,0.2);
    border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
}
 
.save-btn {
    font-weight: 400;
    font-size: 1rem;
    color: #FFFFFF;
    width: 14rem;
    background: linear-gradient( 140deg, #00BAFF 0%, #006CFB 100%);
    box-shadow: 0 0.25rem 0.625rem 0 rgba(3,88,185,0.2);
    border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
}
 
// 响应式调整
@media (max-width: 768px) {
    .submit-section {
        padding: 12px;
    }
}
 
.tip-text { 
    padding: 4px 16px 0 16px; 
    font-size: 12px; 
    color: #888; 
}
 
.scan-icon {
    color: #1989fa;
    font-size: 18px;
    margin-left: 8px;
    cursor: pointer;
}
 
.attachment-upload {
    width: 100%;
}
 
.upload-buttons {
    display: flex;
    margin-bottom: 12px;
}
 
.attachment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
 
.attachment-item {
    position: relative;
    width: 80px;
    height: 80px;
}
 
.attachment-preview {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    background: #f5f5f5;
}
 
.attachment-delete {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.attachment-empty {
    font-size: 12px;
    color: #909399;
}
</style>