nacos分组配置问题
This commit is contained in:
@@ -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){
|
||||
|
||||
Reference in New Issue
Block a user