fix: ele改回使用账号选择组件

This commit is contained in:
hw
2025-11-20 11:05:18 +08:00
parent cf14806b6f
commit 0ea99e5aa8
10 changed files with 49 additions and 42 deletions

View File

@@ -8,7 +8,7 @@ import { DICT_TYPE } from '@vben/constants';
import { getDictObj, getDictOptions } from '@vben/hooks';
import { getSimpleAccountList } from '#/api/mp/account';
import { ReplySelect } from '#/views/mp/components';
import { WxReplySelect } from '#/views/mp/components';
import { MsgType } from './modules/types';
@@ -143,7 +143,7 @@ export function useFormSchema(msgType: MsgType): VbenFormSchema[] {
schema.push({
fieldName: 'reply',
label: '回复消息',
component: markRaw(ReplySelect),
component: markRaw(WxReplySelect),
});
return schema;
}