【代码评审】工作流:新发起页的优化

This commit is contained in:
YunaiV
2024-11-08 23:01:23 +08:00
parent d052356ff0
commit 066607ab08
4 changed files with 65 additions and 45 deletions

View File

@ -16,6 +16,7 @@
<el-col :span="17" :offset="1">
<el-transfer
v-model="selectedUserIdList"
:titles="['未选', '已选']"
filterable
filter-placeholder="搜索成员"
:data="userList"
@ -28,8 +29,9 @@
:disabled="formLoading || !selectedUserIdList?.length"
type="primary"
@click="submitForm"
> </el-button
>
</el-button>
<el-button @click="dialogVisible = false"> </el-button>
</template>
</Dialog>
@ -44,48 +46,60 @@ const emit = defineEmits<{
confirm: [id: any, userList: any[]]
}>()
const { t } = useI18n() // 国际
const message = useMessage() // 消息弹窗
const deptList = ref<Tree[]>([]) // 部门树形结构化
const userList: any = ref([]) // 用户列表
const message = useMessage() // 消息弹窗
const selectedUserIdList: any = ref([]) // 选中的用户列表
const dialogVisible = ref(false) // 弹窗的是否展示
const formLoading = ref(false) // 表单的加载中
const activityId = ref() // 主键id
const activityId = ref() // 关联的主键编号 TODO @goldenzqqq这个 activityId 有没可能不传递。在使用 @submitForm="xxx()" 时,传递的参数。目的是,更加解耦一些。
/** 打开弹窗 */
const open = async (id, selectedList?) => {
const open = async (id: number, selectedList?: any[]) => {
activityId.value = id
// 重置表单
resetForm()
// 加载相关数据
deptList.value = handleTree(await DeptApi.getSimpleDeptList())
await getUserList()
selectedUserIdList.value = selectedList?.map((item) => item.id)
// 修改时,设置数据
// 设置选中的用户列表
selectedUserIdList.value = selectedList?.map((item: any) => item.id)
// 设置可见
dialogVisible.value = true
}
/* 获取用户列表 */
const getUserList = async (deptId?) => {
/** 获取用户列表 */
const getUserList = async (deptId?: number) => {
try {
// @ts-ignore
// TODO @芋艿:替换到 simple List
const data = await UserApi.getUserPage({ pageSize: 100, pageNo: 1, deptId })
userList.value = data.list
} finally {
}
}
/** 提交选择 */
const submitForm = async () => {
// 提交请求
formLoading.value = true
try {
message.success(t('common.updateSuccess'))
dialogVisible.value = false
const emitUserList = userList.value.filter((user) => selectedUserIdList.value.includes(user.id))
const emitUserList = userList.value.filter((user: any) =>
selectedUserIdList.value.includes(user.id)
)
// 发送操作成功的事件
emit('confirm', activityId.value, emitUserList)
} finally {
formLoading.value = false
}
}
/** 重置表单 */
const resetForm = () => {
deptList.value = []
userList.value = []
@ -93,8 +107,9 @@ const resetForm = () => {
}
/** 处理部门被点击 */
const handleNodeClick = async (row: { [key: string]: any }) => {
const handleNodeClick = (row: { [key: string]: any }) => {
getUserList(row.id)
}
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
</script>