|
@@ -54,8 +54,10 @@ export default {
|
|
|
modelFile: null,
|
|
|
};
|
|
|
},
|
|
|
+ created() {
|
|
|
+ },
|
|
|
computed: {
|
|
|
- filterlogData: function() {
|
|
|
+ filterlogData () {
|
|
|
let newLogData = [];
|
|
|
if (this.logData.length) {
|
|
|
this.logData.forEach(item => {
|
|
@@ -81,6 +83,7 @@ export default {
|
|
|
let a = document.createElement("a");
|
|
|
a.href = url;
|
|
|
a.download =`${this.modelFolderName}${item.FloorName}模型文件v${item.Version}.rvt`;
|
|
|
+
|
|
|
a.click();
|
|
|
} else {
|
|
|
this.$message({
|