唐耀东
2022-05-18 c01dff9a24f98f10f247d2f2e449383f567ec338
src/views/basics/organization/index.vue
@@ -181,7 +181,7 @@
    },
    /** 查询高校组织机构下拉树结构 */
    getTreeselect() {
      listOrganization().then(response => {
      listOrganization({schoolId: this.schoolId}).then(response => {
        this.organizationOptions = [];
        const data = {id: 0, name: '顶级节点', children: []};
        data.children = this.handleTree(response.data, "id", "parentId");
@@ -276,7 +276,7 @@
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      this.$modal.confirm('是否确认删除高校组织机构编号为"' + row.id + '"的数据项?').then(() => {
      this.$modal.confirm('是否确认删除?').then(() => {
        this.loading = true;
        return delOrganization(row.id);
      }).then(() => {