fixbug: 🐛 消息更新bug
This commit is contained in:
parent
328fae2866
commit
1c9bbcd221
|
@ -49,6 +49,18 @@ defineExpose({ formRef });
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</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 -->
|
<!-- 接收人ID -->
|
||||||
<el-form-item :label="$t('receivedUserIds')" prop="receivedUserIds">
|
<el-form-item :label="$t('receivedUserIds')" prop="receivedUserIds">
|
||||||
<el-select
|
<el-select
|
||||||
|
|
Loading…
Reference in New Issue