Commit 79d1c545 by 莫晓莉

mxl

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