+
+ {t('渠道')}: {currentTestChannel.name}
+
+
+ {/* 搜索框 */}
+
setModelSearchKeyword(value)}
+ style={{ marginBottom: '16px' }}
+ showClear
+ />
+
+
+ {currentTestChannel.models.split(',')
+ .filter(model => model.toLowerCase().includes(modelSearchKeyword.toLowerCase()))
+ .map((model, index) => {
+
+ return (
+
+ );
+ })}
+
+
+ {/* 显示搜索结果数量 */}
+ {modelSearchKeyword && (
+
+ {t('找到')} {currentTestChannel.models.split(',').filter(model =>
+ model.toLowerCase().includes(modelSearchKeyword.toLowerCase())
+ ).length} {t('个模型')}
+
+ )}
+