|
|
@@ -279,7 +279,7 @@
|
|
|
const fileUrl = uploadRes.data;
|
|
|
// 更新文档地址
|
|
|
await fileUpdateAPI({
|
|
|
- stampStoragePath: fileUrl,
|
|
|
+ stampStoragePath: [fileUrl],
|
|
|
id: item.id
|
|
|
});
|
|
|
// 处理签章使用记录
|
|
|
@@ -324,8 +324,11 @@
|
|
|
},
|
|
|
async browseOpen(row, type) {
|
|
|
if (type == 1) {
|
|
|
- let data=await getById(row.id)
|
|
|
- this.$refs.sealManagementRef.open({...data,droppedImages:row.droppedImages});
|
|
|
+ let data = await getById(row.id);
|
|
|
+ this.$refs.sealManagementRef.open({
|
|
|
+ ...data,
|
|
|
+ droppedImages: row.droppedImages
|
|
|
+ });
|
|
|
} else {
|
|
|
this.$refs.browseRef.open(await getById(row.id));
|
|
|
}
|