|
@@ -369,7 +369,7 @@ import { findContractByProjectId, removeUsersByIds } from "@/api/manager/contrac
|
|
|
import { exportBlob } from "@/api/common";
|
|
|
import { getDeptTree, getDeptLazyTree } from "@/api/system/dept";
|
|
|
import { roletree, treeUser, findProjectAndContractList, saveUserInfoByProjectTow } from "@/api/system/role";
|
|
|
-import { getPostList } from "@/api/system/post";
|
|
|
+// import { getPostList } from "@/api/system/post";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import website from '@/config/website';
|
|
|
import { getToken } from '@/util/auth';
|
|
@@ -876,6 +876,9 @@ export default {
|
|
|
if (!website.tenantMode) {
|
|
|
this.initData(website.tenantId);
|
|
|
}
|
|
|
+ if (this.$route.query.tankai) {
|
|
|
+ this.$refs.crud.rowAdd()
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
//#region 弹框事件及方法
|
|
@@ -1117,6 +1120,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
rowSave (row, done, loading) { //新增保存
|
|
|
+ console.log('保存');
|
|
|
row.deptId = row.deptId.join(",");
|
|
|
row.roleId = row.roleId.join(",");
|
|
|
row.postId = row.postId.join(",");
|
|
@@ -1391,7 +1395,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
//#endregion
|
|
|
- }
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|