+ {listLoading && expertList.length === 0 ? (
+
+ 加载中...
+
+ ) : (
+ <>
+ {/* 无专家 option */}
+
+ {expertList.length > 0 && (
+
+ {expertList.map(expert => {
+ const isSelected = selectedExpert?.name === expert.name
+ return (
+
+ )
+ })}
+
+ )}
+
+
+
+ >
+ )}
+