|
@@ -35,10 +35,8 @@
|
|
|
<script setup>
|
|
|
import { ref, getCurrentInstance } from "vue";
|
|
|
import { useCrud } from "@/hooks/userCrud";
|
|
|
-import ButtonPermKeys from "@/common/configs/buttonPermission";
|
|
|
import { useCommonStoreHook, useDictionaryStore } from "@/store";
|
|
|
import dictDataUtil from "@/common/configs/dictDataUtil";
|
|
|
-import SingleUpload from "@/components/Upload/SingleUpload.vue";
|
|
|
const { isShowTable, tableType } = toRefs(useCommonStoreHook());
|
|
|
import {
|
|
|
getPostSkill,
|
|
@@ -211,8 +209,6 @@ option2.value = {
|
|
|
overHidden: true,
|
|
|
search: true,
|
|
|
filterable: true,
|
|
|
- width: 100,
|
|
|
- overHidden: true,
|
|
|
disabled: true,
|
|
|
display: false,
|
|
|
},
|
|
@@ -234,17 +230,14 @@ option2.value = {
|
|
|
ctableRef.value.startSelect();
|
|
|
},
|
|
|
},
|
|
|
- {
|
|
|
+ /* {
|
|
|
label: "所属机构",
|
|
|
prop: "institution",
|
|
|
width: 130,
|
|
|
overHidden: true,
|
|
|
search: true,
|
|
|
filterable: true,
|
|
|
- width: 100,
|
|
|
- overHidden: true,
|
|
|
- disabled: true,
|
|
|
- },
|
|
|
+ },*/
|
|
|
{
|
|
|
label: "员工编号",
|
|
|
prop: "employeeCode",
|
|
@@ -270,7 +263,7 @@ option2.value = {
|
|
|
},
|
|
|
props: { label: "postName", value: "id" },
|
|
|
},
|
|
|
- { label: "部门", prop: "deptName", overHidden: true, disabled: true },
|
|
|
+ { label: "所属机构", prop: "deptName", overHidden: true, disabled: true },
|
|
|
],
|
|
|
};
|
|
|
const postIdValue = ref({});
|
|
@@ -339,11 +332,10 @@ option.value = Object.assign(option.value, {
|
|
|
});
|
|
|
const onSelectedFinish = (selectedValue) => {
|
|
|
form.value.userId = selectedValue.id;
|
|
|
-
|
|
|
form.value.userName = selectedValue.userName;
|
|
|
form.value.deptName = selectedValue.deptName;
|
|
|
form.value.employeeCode = selectedValue.employeeCode;
|
|
|
- form.value.institution = selectedValue.institution;
|
|
|
+ //form.value.institution = selectedValue.institution;
|
|
|
};
|
|
|
const skillValue = ref(null);
|
|
|
const optionSkill = ref([]);
|