forked from nsjcy/frontEnd/nsjcy

liuwh
2020-03-29 9c7c21e8eacda173feb418bdfe739f7f97358233
SunshineIns/src/page/ExamineEdit.jsx
@@ -69,7 +69,7 @@
                        ...res,
                    },
                    loading: false,
                    fileList: res.list ? res.list.map((item, index) => ({ uid: index, id: item.id, name: item.name, status: 'done', url: domain + `/api/v1/attachment/download/${item.id}?online=false` })) : []
                    fileList: res.list ? res.list.map((item, index) => ({ uid: uid, id: item.uid, name: item.name, status: 'done', url: domain + `/api/v1/attachment/download/${item.uid}?online=false` })) : []
                });
            })
@@ -249,7 +249,7 @@
                showRemoveIcon: false
            },
            onDownload: (file) => {
                Fetch.attachmentDownload(file.id)
                Fetch.attachmentDownload(file.uid)
                    .then(res => {
                        message.success("下载成功!");
                    });