mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-31 02:02:48 +00:00
166 lines
3.9 KiB
Vue
166 lines
3.9 KiB
Vue
<template>
|
|
<el-dialog
|
|
v-model="dialogVisible"
|
|
:close-on-press-escape="false"
|
|
:close-on-click-modal="false"
|
|
:destroy-on-close="true"
|
|
width="600"
|
|
class="member-dialog"
|
|
>
|
|
<template #header="{ titleId, titleClass }">
|
|
<h4 :id="titleId" :class="titleClass">添加成员</h4>
|
|
<div class="dialog-sub-title">成员登录后可以访问到您授权的数据。</div>
|
|
</template>
|
|
|
|
<el-form
|
|
ref="addMemberFormRef"
|
|
:model="memberForm"
|
|
label-position="top"
|
|
:rules="rules"
|
|
require-asterisk-position="right"
|
|
@submit.prevent
|
|
>
|
|
<el-form-item label="用户名/邮箱" prop="users">
|
|
<tags-input v-model:tags="memberForm.users" placeholder="请输入成员的用户名或邮箱" />
|
|
<!-- <el-select
|
|
ref="SelectRemoteRef"
|
|
class="custom-select-multiple"
|
|
v-model="memberForm.users"
|
|
multiple
|
|
filterable
|
|
remote
|
|
reserve-keyword
|
|
placeholder="请输入成员的用户名或邮箱"
|
|
no-data-text="用户不存在"
|
|
:remote-method="remoteMethod"
|
|
:loading="loading"
|
|
@change="changeSelectHandle"
|
|
>
|
|
<el-option
|
|
v-for="item in userOptions"
|
|
:key="item?.id"
|
|
:label="item?.username"
|
|
:value="item?.id"
|
|
/>
|
|
</el-select> -->
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click.prevent="dialogVisible = false"> 取消 </el-button>
|
|
<el-button type="primary" @click="submitMember(addMemberFormRef)" :loading="loading">
|
|
添加
|
|
</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref, watch, onMounted } from 'vue'
|
|
import type { FormInstance, FormRules } from 'element-plus'
|
|
import { MsgSuccess } from '@/utils/message'
|
|
import TeamApi from '@/api/team'
|
|
// import UserApi from '@/api/user'
|
|
|
|
const emit = defineEmits(['refresh'])
|
|
|
|
const dialogVisible = ref<boolean>(false)
|
|
|
|
const memberForm = ref({
|
|
users: []
|
|
})
|
|
|
|
// const SelectRemoteRef = ref()
|
|
const addMemberFormRef = ref<FormInstance>()
|
|
|
|
const loading = ref<boolean>(false)
|
|
// const userOptions = ref<Array<any>>([])
|
|
|
|
const rules = ref<FormRules>({
|
|
users: [
|
|
{
|
|
type: 'array',
|
|
required: true,
|
|
message: '请输入用户名/邮箱',
|
|
trigger: 'change'
|
|
}
|
|
]
|
|
})
|
|
|
|
watch(dialogVisible, (bool) => {
|
|
if (!bool) {
|
|
memberForm.value = {
|
|
users: []
|
|
}
|
|
loading.value = false
|
|
}
|
|
})
|
|
|
|
// const remoteMethod = (query: string) => {
|
|
// if (query) {
|
|
// setTimeout(() => {
|
|
// getUser(query)
|
|
// }, 200)
|
|
// } else {
|
|
// userOptions.value = []
|
|
// }
|
|
// }
|
|
|
|
// const changeSelectHandle = () => {
|
|
// SelectRemoteRef.value.query = ''
|
|
// SelectRemoteRef.value.blur()
|
|
// }
|
|
|
|
const open = () => {
|
|
dialogVisible.value = true
|
|
}
|
|
const submitMember = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return
|
|
await formEl.validate((valid, fields) => {
|
|
if (valid) {
|
|
loading.value = true
|
|
let idsArray = memberForm.value.users.map((obj: any) => obj.id)
|
|
TeamApi.postCreatTeamMember(idsArray).then((res) => {
|
|
MsgSuccess('提交成功')
|
|
emit('refresh', idsArray)
|
|
dialogVisible.value = false
|
|
loading.value = false
|
|
})
|
|
} else {
|
|
console.log('error submit!')
|
|
}
|
|
})
|
|
}
|
|
|
|
// const getUser = (val: string) => {
|
|
// UserApi.getUserList(val, loading).then((res) => {
|
|
// userOptions.value.push(res.data)
|
|
// })
|
|
// }
|
|
|
|
onMounted(() => {})
|
|
|
|
defineExpose({ open, close })
|
|
</script>
|
|
<style lang="scss" scope>
|
|
.member-dialog {
|
|
.el-dialog__header {
|
|
padding-bottom: 19px;
|
|
}
|
|
}
|
|
.custom-select-multiple {
|
|
width: 200%;
|
|
.el-input {
|
|
min-height: 100px;
|
|
}
|
|
.el-select__tags {
|
|
top: 0;
|
|
transform: none;
|
|
padding-top: 8px;
|
|
}
|
|
.el-input__wrapper {
|
|
align-items: start;
|
|
}
|
|
}
|
|
</style>
|