diff --git a/src/views/firmware/firmwareList/index.vue b/src/views/firmware/firmwareList/index.vue index dbfb2c7..1270a16 100644 --- a/src/views/firmware/firmwareList/index.vue +++ b/src/views/firmware/firmwareList/index.vue @@ -273,8 +273,8 @@ export default { handleFileSuccess (res, file, fileList) { if (res.code == 200) { this.$message.success(res.msg); - let { fileName, length, url } = res; - this.form = Object.assign({}, this.form, { fileName, length, filePath: url }); + let { fileName, length, url, crc } = res; + this.form = Object.assign({}, this.form, { fileName, length, filePath: url, crc }); } else { this.$message.error(res.msg); }