|
@@ -253,14 +253,6 @@ option2.value = {
|
|
|
disabled: true,
|
|
|
dicUrl: dictDataUtil.post_list_url,
|
|
|
dicMethod: "post",
|
|
|
- change: ({ value, column }) => {
|
|
|
- if (value !== undefined) {
|
|
|
- props.postId = value;
|
|
|
- skillValue.value = null;
|
|
|
- optionSkill.value = null;
|
|
|
- dataList();
|
|
|
- }
|
|
|
- },
|
|
|
props: { label: "postName", value: "id" },
|
|
|
},
|
|
|
{ label: "所属机构", prop: "deptName", overHidden: true, disabled: true },
|
|
@@ -328,7 +320,10 @@ option.value = Object.assign(option.value, {
|
|
|
blur: function (row) {
|
|
|
if (
|
|
|
data.value
|
|
|
- .map((item) => {
|
|
|
+ .filter((value, index) => {
|
|
|
+ return index != row.index;
|
|
|
+ })
|
|
|
+ .map((item, index) => {
|
|
|
return item.skillDictValue;
|
|
|
})
|
|
|
.includes(row.value)
|