fix:修改删除连线判断的问题

This commit is contained in:
zhangyu
2020-12-23 18:04:01 +08:00
parent 3eddc630ae
commit 935c2d700f
3 changed files with 9 additions and 6 deletions

View File

@@ -107,7 +107,8 @@
exportFileName:{type:String},
importUrl: {type:String,required:true},
link:{type:Object},
permissions: {type: Object}
permissions: {type: Object},
showCur:{type:Boolean,default:true}
},
data:function(){
return {
@@ -290,7 +291,7 @@
showImportBox:function(type){
this.importBox.show=true;
this.importBox.type=type;
if(type == 2&&(this.$route.path==='/model')){
if(type == 2&&(!this.showCur)){
this.exportCur()
return
}