作者 董瑞恩
1 个管道 的构建 通过 耗费 0 秒

equipment

... ... @@ -117,9 +117,11 @@ class AdminEquipmentController extends AdminBaseController{
//批量导出
public function batch_export(){
$ids=$this->request->post('ids');
dump($ids);
exit();
$param=$this->request->param();
if (isset($param['ids'])) {
dump($param['ids']);
exit();
}
$data= Db::name('equipment')->where('id','in',$ids)->select();
// 导出Exl
... ...
... ... @@ -155,7 +155,7 @@
}
function batch_add() {
openIframeLayer("{:url('AdminEquipment/batch_add')}", '请选择分类', {
openIframeLayer("{:url('AdminEquipment/batch_add')}", '批量导入', {
area: ['1000px', '800px'],
btn: ['确定', '取消'],
yes: function (index, layero) {
... ...