后台编辑部分:当select的内容过多,譬如品牌,可以使用可以搜索的searchSelect,
譬如后台产品编辑,品牌部分,改成可以搜索的下拉条:
https://github.com/fecshop/yii2_fecshop/blob/master/app/appadmin/modules/Catalog/block/productinfo/index/BatchAttr.php#L195
改为:
[
'label' => Yii::$service->page->translate->__('Product Brand'),
'name' => 'brand_id',
'display' => [
'type' => 'searchSelect',
'data' => [
1=>'华为',
2=>'中兴'
],
],
],
详细:

功能已经添加,等新版发布。