Commit 79d1c545 by 莫晓莉

mxl

parent 72257ede
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
:activeElement="activeElement" :activeElement="activeElement"
@changeNodeSite="changeNodeSite" @changeNodeSite="changeNodeSite"
@nodeRightMenu="nodeRightMenu" @nodeRightMenu="nodeRightMenu"
@clickNode="clickNode" @dblclick.native="clickNode(node)"
> >
</flow-node> </flow-node>
</template> </template>
...@@ -745,7 +745,7 @@ ...@@ -745,7 +745,7 @@
<!-- 输出弹窗start=============== --> <!-- 输出弹窗start=============== -->
<outDialog ref="tableOutPut" :tableOutPutVisible.sync="tableOutPutVisible"></outDialog> <outDialog ref="tableOutPut" :tableOutPutVisible.sync="tableOutPutVisible" @fathertrans="fathertrans"></outDialog>
<insertOrUpdate ref="insertOrdate" :InsertOrUpdateVisible.sync="InsertOrUpdateVisible"></insertOrUpdate> <insertOrUpdate ref="insertOrdate" :InsertOrUpdateVisible.sync="InsertOrUpdateVisible"></insertOrUpdate>
<excelOutPutDialog ref="excelOut" :excelOutPutVisible.sync="excelOutPutVisible"></excelOutPutDialog> <excelOutPutDialog ref="excelOut" :excelOutPutVisible.sync="excelOutPutVisible"></excelOutPutDialog>
<updateDialog ref="update" :updateVisible.sync="updateVisible"></updateDialog> <updateDialog ref="update" :updateVisible.sync="updateVisible"></updateDialog>
...@@ -808,12 +808,12 @@ import microDialog from '../../../output-dialog/micro-excel' ...@@ -808,12 +808,12 @@ import microDialog from '../../../output-dialog/micro-excel'
export default { export default {
// props: { props: {
// dialogVisibleFourth: { dialogVisibleFourth: {
// type: Boolean, type: Boolean,
// default: false default: false
// } }
// }, },
data() { data() {
return { return {
...@@ -1013,6 +1013,14 @@ export default { ...@@ -1013,6 +1013,14 @@ export default {
}); });
}, },
methods: { methods: {
// 子组件发射回来的弹窗变量变为true
fathertrans(res){
// this.dialogVisibleFourth=res;
this.$emit("update:dialogVisibleFourth", res);
console.log('发射回父组件====');
},
addSheet() {}, addSheet() {},
fileChnageInput(e) { fileChnageInput(e) {
console.log(e); console.log(e);
...@@ -1520,6 +1528,10 @@ export default { ...@@ -1520,6 +1528,10 @@ export default {
this.RandomValueDialog = !this.RandomValueDialog; this.RandomValueDialog = !this.RandomValueDialog;
return; return;
} }
if (node.ids == "step16") {
this.tableOutPutVisible = !this.tableOutPutVisible;
return;
}
}, },
// 是否具有该线 // 是否具有该线
hasLine(from, to) { hasLine(from, to) {
......
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