- 添加 .editorconfig 文件统一代码风格 - 配置 .env.development 环境变量文件 - 创建 .env.example 环境变量示例文件 - 设置 .eslintignore 忽略检查规则 - 配置 .eslintrc.js 代码检查规则 - 添加 .gitignore 文件忽略版本控制 - 设置 .prettierignore 忽略格式化规则 - 新增隐私政策HTML页面文件 - 创建API密钥编辑组件基础结构
145 lines
3.3 KiB
Vue
145 lines
3.3 KiB
Vue
<template>
|
|
<ele-table-select
|
|
ref="selectRef"
|
|
:allow-clear="true"
|
|
:placeholder="placeholder"
|
|
v-model:value="selectedValue"
|
|
value-key="userId"
|
|
label-key="nickname"
|
|
:table-config="tableConfig"
|
|
:overlay-style="{ width: '520px', maxWidth: '80%' }"
|
|
:init-value="initValue"
|
|
@select="onSelect"
|
|
@clear="onClear"
|
|
>
|
|
<!-- 角色列 -->
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'progress'">
|
|
<div v-for="(d, i) in progressDict" :key="i">
|
|
<span v-if="d.value === record.progress">{{ d.label }}</span>
|
|
</div>
|
|
</template>
|
|
<template v-if="column.key === 'nickname'">
|
|
<a-avatar
|
|
:size="30"
|
|
:src="`${record.avatar}`"
|
|
style="margin-right: 4px"
|
|
/>
|
|
{{ record.nickname }}
|
|
</template>
|
|
</template>
|
|
<!-- 表头工具栏 -->
|
|
<template #toolbar>
|
|
<UserSearch @search="search" />
|
|
</template>
|
|
</ele-table-select>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, watch } from 'vue';
|
|
import UserSearch from './user-search.vue';
|
|
import type { EleTableSelect } from 'ele-admin-pro/es';
|
|
import type { ProTableProps } from 'ele-admin-pro/es/ele-pro-table/types';
|
|
import type { WhereType } from './types';
|
|
import { pageUsers } from '@/api/system/user';
|
|
import { getDictionaryOptions } from '@/utils/common';
|
|
import type { User } from '@/api/user/model';
|
|
import { isArray } from 'lodash-es';
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
value?: number | 0;
|
|
placeholder?: string;
|
|
}>(),
|
|
{
|
|
placeholder: '请选择用户'
|
|
}
|
|
);
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'select', where?: User): void;
|
|
(e: 'clear'): void;
|
|
}>();
|
|
|
|
const selectedValue = ref<number>();
|
|
// 获取字典数据
|
|
const progressDict = getDictionaryOptions('userFollowStatus');
|
|
// 回显值
|
|
const initValue = ref<User[]>([]);
|
|
// 选择框实例
|
|
const selectRef = ref<InstanceType<typeof EleTableSelect> | null>(null);
|
|
|
|
// 表格配置
|
|
const tableConfig = reactive<ProTableProps>({
|
|
datasource: ({ page, limit, where, orders }) => {
|
|
return pageUsers({ ...where, ...orders, page, limit });
|
|
},
|
|
columns: [
|
|
{
|
|
title: '昵称',
|
|
dataIndex: 'nickname',
|
|
key: 'nickname',
|
|
showSorterTooltip: false
|
|
},
|
|
{
|
|
title: '手机号码',
|
|
dataIndex: 'phone',
|
|
showSorterTooltip: false
|
|
},
|
|
{
|
|
title: '部门',
|
|
dataIndex: 'organizationName',
|
|
showSorterTooltip: false
|
|
}
|
|
],
|
|
toolkit: ['reload', 'columns'],
|
|
size: 'small',
|
|
pageSize: 6,
|
|
toolStyle: {
|
|
padding: '0 8px'
|
|
}
|
|
});
|
|
|
|
// 搜索
|
|
const search = (where: WhereType) => {
|
|
selectRef.value?.reload({
|
|
where,
|
|
page: 1
|
|
});
|
|
};
|
|
|
|
const onClear = () => {
|
|
emit('clear');
|
|
};
|
|
|
|
const onSelect = (item) => {
|
|
emit('select', item);
|
|
};
|
|
|
|
/* 回显数据 */
|
|
const setInitValue = () => {
|
|
if (isArray(props.value)) {
|
|
initValue.value = props.value;
|
|
}
|
|
const userId = Number(props.value);
|
|
if (userId) {
|
|
}
|
|
// getUser(userId).then((res) => {
|
|
// if (res) {
|
|
// initValue.value = res;
|
|
// }
|
|
// });
|
|
};
|
|
|
|
setInitValue();
|
|
|
|
watch(
|
|
() => props.value,
|
|
(value) => {
|
|
if (value) {
|
|
setInitValue();
|
|
}
|
|
}
|
|
);
|
|
</script>
|