短信发送功能,指定专家BUG修复

This commit is contained in:
2026-01-16 16:58:52 +08:00
parent 82ade3d3d4
commit 31bdef36ea
2 changed files with 3 additions and 3 deletions
@@ -103,7 +103,7 @@
{
label: '姓名',
field: 'doctorName',
component: 'JInput',
component: 'Input',
},
{
label: '专家状态',
@@ -124,8 +124,8 @@ export function useSelectBiz(getList, props) {
const options = <any[]>[];
const values = <any[]>[];
selectRows.value.forEach((item) => {
// options.push({ label: item[props.labelKey], value: item[props.rowKey] });
options.push({ label: item.realname, value: item.id }); // 大病就医时修改 20230512
options.push({ label: item[props.labelKey], value: item[props.rowKey] });
// options.push({ label: item.realname, value: item.id }); // 大病就医时修改 20230512
});
checkedKeys.value.forEach((item) => {
values.push(item);