fixbug: 🐛 消息更新bug

This commit is contained in:
bunny 2024-11-04 01:28:44 +08:00
parent 328fae2866
commit 1c9bbcd221
1 changed files with 12 additions and 0 deletions

View File

@ -49,6 +49,18 @@ defineExpose({ formRef });
</el-select>
</el-form-item>
<!-- 发送人 -->
<el-form-item :label="$t('sendUserId')" prop="sendUserId">
<el-select v-model="updateMessage.sendUserId" :loading="loading" :placeholder="$t('receivedUserIdTip')" :remote-method="onSearchUserinfo" clearable filterable remote remote-show-suffix>
<el-option v-for="item in userDataList" :key="item.id" :label="item.username" :value="item.id" />
<template #loading>
<el-icon class="is-loading">
<LoadingSvg />
</el-icon>
</template>
</el-select>
</el-form-item>
<!-- 接收人ID -->
<el-form-item :label="$t('receivedUserIds')" prop="receivedUserIds">
<el-select