调整条件管理关闭

This commit is contained in:
fan 2020-11-05 18:02:02 +08:00
parent a212984e3d
commit 02615110a2
2 changed files with 5 additions and 1 deletions

View File

@ -158,6 +158,7 @@ export default {
},
handleClose() {
this.dialogVisible = false;
this.$emit('clearConditionActionId');
this.initData();
},
getSectionName(code) {

View File

@ -66,7 +66,7 @@
</div>
</div>
<add-script-member ref="addScriptMember" @addScriptMember="addScriptMember" />
<condition-manage ref="conditionManage" />
<condition-manage ref="conditionManage" @clearConditionActionId="clearConditionActionId" />
</div>
</template>
<script>
@ -562,6 +562,9 @@ export default {
},
showConditionManage(actionId) {
this.$refs.conditionManage.doShow(actionId);
},
clearConditionActionId() {
this.$refs.getAction.conditionActionId = '';
}
}
};