Commit 39eb2ae3a1a2f2d7fd6690b84843f12545312177

Authored by loveumiko
1 parent 094e646b

fix: 修复视频通道号选择成功但是没有回显通道号名称

@@ -321,7 +321,7 @@ export const formSchema: QFormSchema[] = [ @@ -321,7 +321,7 @@ export const formSchema: QFormSchema[] = [
321 if (data) 321 if (data)
322 return data.map((item) => ({ 322 return data.map((item) => ({
323 ...item, 323 ...item,
324 - label: item.name, 324 + label: item.name || item.channelId,
325 value: item.channelId, 325 value: item.channelId,
326 })); 326 }));
327 } catch (error) {} 327 } catch (error) {}