Commit 7e436020 by 莫晓莉

表输出

parent 436fbc30
......@@ -811,8 +811,7 @@
<outDialog
ref="tableOutPut"
:tableOutPutVisible.sync="tableOutPutVisible"
@fathertrans="fathertrans"
></outDialog>
@fathertrans="fathertrans" :graph.sync="graph"  :doubleClickCell="doubleClickCell" :getXmlVal="getXmlVal"></outDialog>
<insertOrUpdate
ref="insertOrdate"
:InsertOrUpdateVisible.sync="InsertOrUpdateVisible"
......@@ -903,6 +902,7 @@ export default {
data() {
return {
doubleClickCell:{},
monitorCanvas: "", //监听画布
getXmlVal: "", //获取上一个xml
keyHandler: null,
......@@ -1231,8 +1231,10 @@ console.log(cell.value.attributes,99999999999999);
cell.title = cell.value.attributes.label.value;
cell.ctype = cell.value.attributes.ctype.value;
// cell.title = cell.value.attributes.label.value;
// cell.ctype = cell.value.attributes.ctype.value;
// let height = cell.geometry.height;
// let width = cell.geometry.width;
// let x = cell.geometry.x;
......@@ -1281,7 +1283,10 @@ cell.ctype = cell.value.attributes.ctype.value;
// 监听双击事件
const cell = this.R.pathOr([], ["properties", "cell"], evt);
console.info(cell); // 在控制台输出双击的cell
this.setXml();
this.doubleClickCell=cell;
// 获取接口数据
......@@ -1338,7 +1343,7 @@ cell.ctype = cell.value.attributes.ctype.value;
} else if (cell.ids == "step2" || cell.ctype == "TextFileInput") {
this.TextFileInputDialog = !this.TextFileInputDialog;
return;
} else if (cell.ids == "step16") {
} else if (cell.ids == "step17") {
//表输出
this.tableOutPutVisible = !this.tableOutPutVisible;
return;
......
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