|
|
@@ -9,13 +9,13 @@ import { ref } from 'vue';
|
|
|
|
|
|
export const usePersonGroupFilterList = () => {
|
|
|
const FILTER_TYPES = [
|
|
|
- { type: 'staffNo', label: '工号' },
|
|
|
{ type: 'nickname', label: '姓名' },
|
|
|
+ { type: 'staffNo', label: '工号' },
|
|
|
{ type: 'deptName', label: '部门' },
|
|
|
];
|
|
|
|
|
|
// 复用输入框类型及标签
|
|
|
- const personFilterType = ref({ type: 'staffNo', label: '工号' });
|
|
|
+ const personFilterType = ref({ type: 'nickname', label: '姓名' });
|
|
|
// 输入框绑定数据
|
|
|
const personFilterValue = ref<string>();
|
|
|
// 查询参数
|