'',
'method' => 'get',
]); ?>
= Html::dropDownList('year', $year, ArrayHelper::merge(['' => '不限年份'] , ArrayHelper::numBetween(2021, date('Y'), true, 1, '年')), [
'class' => 'form-control',
])?>
= Html::dropDownList('month', $month, ArrayHelper::merge(['' => '不限月份'] , ArrayHelper::numBetween(1, 12, true, 1, '月')), [
'class' => 'form-control',
])?>
= Html::dropDownList('drive', $drive, ArrayHelper::merge(['' => '不限存储类型'] , AttachmentDriveEnum::getMap()), [
'class' => 'form-control',
])?>
= Html::input('text', 'keyword', $keyword, [
'class' => 'form-control',
'placeholder' => '关键字查询'
]); ?>
= Html::tag('span', '', ['class' => 'input-group-btn'])?>
= \common\widgets\webuploader\Files::widget([
'name' => 'upload',
'value' => '',
'type' => $uploadType,
'theme' => 'selector-upload',
'config' => [
'pick' => [
'multiple' => true,
],
'formData' => [
'drive' => $uploadDrive, // 默认本地 可修改 qiniu/oss/cos 上传
'cate_id' => $cateId, // 默认本地 可修改 qiniu/oss/cos 上传
],
]
])?>