update 优化用户选择组件
This commit is contained in:
parent
7a09e0a3fa
commit
a1526f86cf
@ -61,14 +61,11 @@
|
|||||||
:data="userList"
|
:data="userList"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:row-config="{ keyField: 'userId', isHover: true }"
|
:row-config="{ keyField: 'userId', isHover: true }"
|
||||||
:checkbox-config="checkBoxConfig"
|
:checkbox-config="{ reserve: true, trigger: 'row', highlight: true, checkRowKeys: defaultSelectUserIds, showHeader: prop.multiple }"
|
||||||
:radio-config="radioBoxConfig"
|
|
||||||
@checkbox-all="handleCheckboxAll"
|
@checkbox-all="handleCheckboxAll"
|
||||||
@checkbox-change="handleCheckboxChange"
|
@checkbox-change="handleCheckboxChange"
|
||||||
@radio-change="handleRadioChange"
|
|
||||||
>
|
>
|
||||||
<vxe-column v-if="prop.multiple" type="checkbox" width="50" align="center" />
|
<vxe-column type="checkbox" width="50" align="center" />
|
||||||
<vxe-column v-else type="radio" width="50"></vxe-column>
|
|
||||||
<vxe-column key="userId" title="用户编号" align="center" field="userId" />
|
<vxe-column key="userId" title="用户编号" align="center" field="userId" />
|
||||||
<vxe-column key="userName" title="用户名称" align="center" field="userName" />
|
<vxe-column key="userName" title="用户名称" align="center" field="userName" />
|
||||||
<vxe-column key="nickName" title="用户昵称" align="center" field="nickName" />
|
<vxe-column key="nickName" title="用户昵称" align="center" field="nickName" />
|
||||||
@ -114,19 +111,20 @@ import { VxeTableInstance } from 'vxe-table';
|
|||||||
import useDialog from '@/hooks/useDialog';
|
import useDialog from '@/hooks/useDialog';
|
||||||
|
|
||||||
interface PropType {
|
interface PropType {
|
||||||
modelValue: UserVO[] | UserVO | undefined;
|
modelValue?: UserVO[] | UserVO | undefined;
|
||||||
multiple?: boolean;
|
multiple?: boolean;
|
||||||
|
data?: string | number | (string | number)[];
|
||||||
}
|
}
|
||||||
const prop = withDefaults(defineProps<PropType>(), {
|
const prop = withDefaults(defineProps<PropType>(), {
|
||||||
multiple: true
|
multiple: true,
|
||||||
|
modelValue: undefined,
|
||||||
|
data: undefined
|
||||||
});
|
});
|
||||||
const emit = defineEmits(['update:modelValue']);
|
const emit = defineEmits(['update:modelValue', 'confirmCallBack']);
|
||||||
|
|
||||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
const { sys_normal_disable } = toRefs<any>(proxy?.useDict('sys_normal_disable'));
|
const { sys_normal_disable } = toRefs<any>(proxy?.useDict('sys_normal_disable'));
|
||||||
|
|
||||||
const defaultSelectUserIds = ref([]);
|
|
||||||
const defaultSelectUserId = ref();
|
|
||||||
const userList = ref<UserVO[]>();
|
const userList = ref<UserVO[]>();
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
const showSearch = ref(true);
|
const showSearch = ref(true);
|
||||||
@ -135,7 +133,6 @@ const dateRange = ref<[DateModelType, DateModelType]>(['', '']);
|
|||||||
const deptName = ref('');
|
const deptName = ref('');
|
||||||
const deptOptions = ref<DeptVO[]>([]);
|
const deptOptions = ref<DeptVO[]>([]);
|
||||||
const selectUserList = ref<UserVO[]>([]);
|
const selectUserList = ref<UserVO[]>([]);
|
||||||
const selectUserObj = ref<UserVO>();
|
|
||||||
|
|
||||||
const deptTreeRef = ref<ElTreeInstance>();
|
const deptTreeRef = ref<ElTreeInstance>();
|
||||||
const queryFormRef = ref<ElFormInstance>();
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
@ -155,19 +152,51 @@ const queryParams = ref<UserQuery>({
|
|||||||
roleId: ''
|
roleId: ''
|
||||||
});
|
});
|
||||||
|
|
||||||
const checkBoxConfig = ref({
|
const confirm = () => {
|
||||||
reserve: true,
|
if (prop.multiple) {
|
||||||
checkRowKeys: defaultSelectUserIds.value
|
emit('update:modelValue', selectUserList.value);
|
||||||
});
|
emit('confirmCallBack', selectUserList.value);
|
||||||
const radioBoxConfig = ref({
|
} else {
|
||||||
checkRowKeys: defaultSelectUserId.value
|
const data = selectUserList.value.length > 0 ? selectUserList.value[0] : undefined;
|
||||||
|
emit('update:modelValue', data);
|
||||||
|
emit('confirmCallBack', data);
|
||||||
|
}
|
||||||
|
userDialog.closeDialog();
|
||||||
|
};
|
||||||
|
|
||||||
|
const refreshDefaultUser = async (data) => {
|
||||||
|
const ids = computedIds(data);
|
||||||
|
if (ids.length > 0) {
|
||||||
|
// const { data } = await api.optionSelect(ids);
|
||||||
|
// await tableRef.value?.setCheckboxRow(data, true);
|
||||||
|
// selectUserList.value = data;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const computedIds = (data) => {
|
||||||
|
if (data instanceof Array) {
|
||||||
|
return [...data];
|
||||||
|
} else if (typeof data === 'string') {
|
||||||
|
return data.split(',');
|
||||||
|
} else if (typeof data === 'number') {
|
||||||
|
return [data];
|
||||||
|
} else {
|
||||||
|
console.warn('The data type of data should be array or string or number, but I received other');
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const defaultSelectUserIds = computed(() => {
|
||||||
|
return computedIds(prop.data);
|
||||||
});
|
});
|
||||||
|
|
||||||
/** 通过条件过滤节点 */
|
watch(
|
||||||
const filterNode = (value: string, data: any) => {
|
() => prop.data,
|
||||||
if (!value) return true;
|
(newVal) => {
|
||||||
return data.label.indexOf(value) !== -1;
|
refreshDefaultUser(newVal);
|
||||||
};
|
},
|
||||||
|
{ deep: true }
|
||||||
|
);
|
||||||
/** 根据名称筛选部门树 */
|
/** 根据名称筛选部门树 */
|
||||||
watchEffect(
|
watchEffect(
|
||||||
() => {
|
() => {
|
||||||
@ -178,13 +207,10 @@ watchEffect(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const confirm = () => {
|
/** 通过条件过滤节点 */
|
||||||
if (prop.multiple) {
|
const filterNode = (value: string, data: any) => {
|
||||||
emit('update:modelValue', selectUserList.value);
|
if (!value) return true;
|
||||||
} else {
|
return data.label.indexOf(value) !== -1;
|
||||||
emit('update:modelValue', selectUserObj.value);
|
|
||||||
}
|
|
||||||
userDialog.closeDialog();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** 查询部门下拉树结构 */
|
/** 查询部门下拉树结构 */
|
||||||
@ -223,11 +249,11 @@ const resetQuery = () => {
|
|||||||
handleQuery();
|
handleQuery();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleRadioChange = (checked) => {
|
|
||||||
selectUserObj.value = checked.row;
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleCheckboxChange = (checked) => {
|
const handleCheckboxChange = (checked) => {
|
||||||
|
if (!prop.multiple && checked.checked) {
|
||||||
|
tableRef.value.setCheckboxRow(selectUserList.value, false);
|
||||||
|
selectUserList.value = [];
|
||||||
|
}
|
||||||
const row = checked.row;
|
const row = checked.row;
|
||||||
if (checked.checked) {
|
if (checked.checked) {
|
||||||
selectUserList.value.push(row);
|
selectUserList.value.push(row);
|
||||||
@ -261,22 +287,15 @@ const handleCloseTag = (user: UserVO) => {
|
|||||||
selectUserList.value.splice(index, 1);
|
selectUserList.value.splice(index, 1);
|
||||||
};
|
};
|
||||||
|
|
||||||
const init = () => {
|
const initData = async () => {
|
||||||
if (!prop.modelValue) return;
|
const { data } = await api.optionSelect(defaultSelectUserIds.value);
|
||||||
if (prop.multiple) {
|
selectUserList.value = data;
|
||||||
selectUserList.value = [...prop.modelValue];
|
|
||||||
defaultSelectUserIds.value = (prop.modelValue as UserVO[]).map((item) => item.userId);
|
|
||||||
} else {
|
|
||||||
const userObj = prop.modelValue as UserVO;
|
|
||||||
selectUserObj.value = { ...userObj };
|
|
||||||
defaultSelectUserId.value = userObj.userId;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getTreeSelect(); // 初始化部门数据
|
getTreeSelect(); // 初始化部门数据
|
||||||
getList(); // 初始化列表数据
|
getList(); // 初始化列表数据
|
||||||
init();
|
initData();
|
||||||
});
|
});
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user