d09c8262 by zhaoqian

自然幢字典信息数据整理

1 parent 6c87480f
...@@ -91,14 +91,14 @@ ...@@ -91,14 +91,14 @@
91 } 91 }
92 }, 92 },
93 methods:{ 93 methods:{
94 submitForm(formName,bsm) { 94 submitForm(formName,zrzbsm,lzjbsm) {
95 this.$refs[formName].validate((valid) => { 95 this.$refs[formName].validate((valid) => {
96 if (valid) { 96 if (valid) {
97 insertZdyInfo(this.form).then((res)=>{ 97 insertZdyInfo(this.form).then((res)=>{
98 if(res.code===200){ 98 if(res.code===200){
99 this.$message.success("保存成功!") 99 this.$message.success("保存成功!")
100 //更新树结构数据 100 //更新树结构数据
101 this.$parent.$parent.getLpbMenuTree(bsm); 101 this.$parent.$parent.getLpbMenuTree(zrzbsm);
102 //关闭弹框 102 //关闭弹框
103 this.$parent.$parent.closeDaialog() 103 this.$parent.$parent.closeDaialog()
104 } 104 }
......