Source/UBCS-WEB/src/components/code-dialog-page/formulaEditor.vue
@@ -343,7 +343,7 @@ export default { name: "formulaEditor", props: { // 对话框显示隐藏控制 // 对话框显示隐藏控制 visible: { type: "Boolean", default: false, @@ -649,13 +649,14 @@ }; }, watch: { // 监听父组件传的窗口显示隐藏的值 visible (){ this.isShowformulaEdit = this.visible; } // 监听父组件传的窗口显示隐藏的值,以及值的回填 visible() { this.isShowformulaEdit = this.visible; this.formulaContent=this.componentRuleText || ''; }, }, mounted() { this.formulaContent=this.componentRuleText }, methods: {