Commit 1b3e4097 by 李耀琨

解决冲突

parents a9e5c74f 82eb9552
...@@ -93,7 +93,8 @@ ...@@ -93,7 +93,8 @@
<div class="resize" title="收缩侧边栏">...</div> <div class="resize" title="收缩侧边栏">...</div>
<div class="mid"> <div class="mid">
<el-tabs v-if="tabShowFlag" style="margin-top:-5vh;margin-bottom:0;" v-model="picName" type="card" closable @tab-remove="removeTab"> <el-tabs v-if="tabShowFlag" style="margin-top:-5vh;margin-bottom:0;" v-model="picName" type="card" closable @tab-remove="removeTab">
<el-tab-pane label="数据库名称" > <!-- <el-tab-pane label="数据库名称" > -->
<el-tab-pane :label="curNodeText" >
<mxgraph-designer ref="pic" v-if="mxGraphShow" :blankCanvas="blankCanvas"></mxgraph-designer> <mxgraph-designer ref="pic" v-if="mxGraphShow" :blankCanvas="blankCanvas"></mxgraph-designer>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
...@@ -379,6 +380,7 @@ export default { ...@@ -379,6 +380,7 @@ export default {
props: ["dragItem"], props: ["dragItem"],
data() { data() {
return { return {
curNodeText:'数据库名称',//当前点击选中的资源库节点
blankCanvas:"",//空白画布xml blankCanvas:"",//空白画布xml
graph:null, graph:null,
flowData:[], flowData:[],
...@@ -1021,7 +1023,10 @@ props: ["dragItem"], ...@@ -1021,7 +1023,10 @@ props: ["dragItem"],
removeTab(){}, removeTab(){
// this.tabShowFlag=false;//关闭画布
// this.activeName="first";//关闭关闭资源库
},
//选出要传给后台的参数集合便于编辑方法 check //选出要传给后台的参数集合便于编辑方法 check
// chooseParams(objParams){ // chooseParams(objParams){
// var newObject={}; // var newObject={};
...@@ -1200,16 +1205,18 @@ props: ["dragItem"], ...@@ -1200,16 +1205,18 @@ props: ["dragItem"],
}, },
handleNodeClick(data,node){ handleNodeClick(data,node){
console.log('点击当前节点===',node); console.log('点击当前节点===',node);
this.nodePath=data.path;//当前选择数
this.curNodeIconCls=data.iconCls;//当前选中节点 this.curNodeIconCls=data.iconCls;//当前选中节点
console.log('当前节点的文件夹路径:',this.nodePath); console.log('当前节点的文件夹路径:',this.nodePath);
// console.log(data,'当前节点的父节点:',node.parent.data); if(node.data.leaf){
this.curNodeText=node.data.text;//当前节点
let pamer = new FormData(); // 创建form对象 let pamer = new FormData(); // 创建form对象
pamer.append("path", this.nodePath); pamer.append("path", this.nodePath);
pamer.append("type", "transformation"); pamer.append("type", "transformation");
open(pamer).then(res=>{ open(pamer).then(res=>{
// console.log(res,'返回画布xml'); console.log(res,'返回空白画布xml');
this.blankCanvas = res this.blankCanvas = res;
// this.tabShowFlag=true;//核心对象显项卡显示
this.activeName="second";
...@@ -1226,6 +1233,15 @@ props: ["dragItem"], ...@@ -1226,6 +1233,15 @@ props: ["dragItem"],
}) })
}
// else{
// this.$message.error('请选择一个资源库!');
// return;
// }
// console.log(data,'当前节点的父节点:',node.parent.data);
}, },
//修改资源库 //修改资源库
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment