nacos分组配置问题

This commit is contained in:
zer0Black
2022-02-28 09:31:44 +08:00
parent 261538ea2a
commit 30ce69799d
2 changed files with 10 additions and 10 deletions
@@ -70,7 +70,7 @@
</div>
<!-- table区域-end -->
<!-- 表单区域 -->
<sys-depart-role-modal ref="modalForm" @ok="modalFormOk"/>
<sys-depart-role-modal ref="sysDepartRoleModalForm" @ok="modalFormOk"/>
<dept-role-auth-modal ref="modalDeptRole" />
</a-card>
</template>
@@ -165,18 +165,18 @@
return true;
},
handleEdit: function (record) {
this.$refs.modalForm.title = "编辑";
this.$refs.modalForm.departDisabled = true;
this.$refs.modalForm.disableSubmit = false;
this.$refs.modalForm.edit(record,record.departId);
this.$refs.sysDepartRoleModalForm.title = "编辑";
this.$refs.sysDepartRoleModalForm.departDisabled = true;
this.$refs.sysDepartRoleModalForm.disableSubmit = false;
this.$refs.sysDepartRoleModalForm.edit(record,record.departId);
},
handleAdd: function () {
if (this.currentDeptId == '') {
this.$message.error("请选择一个部门!")
} else {
this.$refs.modalForm.departDisabled = true;
this.$refs.modalForm.add(this.currentDeptId);
this.$refs.modalForm.title = "新增";
this.$refs.sysDepartRoleModalForm.departDisabled = true;
this.$refs.sysDepartRoleModalForm.add(this.currentDeptId);
this.$refs.sysDepartRoleModalForm.title = "新增";
}
},
handlePerssion: function(record){