settter
parent
cb550401ba
commit
164d0abd68
|
@ -62,7 +62,7 @@ class Consumer extends Base
|
||||||
$whereMap[] = ['using_count', '>', 0];
|
$whereMap[] = ['using_count', '>', 0];
|
||||||
|
|
||||||
if (!empty($params['keyword'])) {
|
if (!empty($params['keyword'])) {
|
||||||
$whereMap[] = ['name', 'like', "%".$params['keyword']."%"];
|
$whereMap[] = ['name|business_name', 'like', "%".$params['keyword']."%"];
|
||||||
}
|
}
|
||||||
if ($params['businessType'] > 0) {
|
if ($params['businessType'] > 0) {
|
||||||
$whereMap[] = ['business_type', '=', $params['businessType']];
|
$whereMap[] = ['business_type', '=', $params['businessType']];
|
||||||
|
|
|
@ -70,7 +70,13 @@ layui.use(['laytpl', 'table', 'jquery', 'form', 'miniTab', 'xmSelect',"laydate"]
|
||||||
d.create_time,
|
d.create_time,
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
exportData=rdata
|
exportData=rdata;
|
||||||
|
$("#exports").on("click",function(){
|
||||||
|
//console.log(exportData)
|
||||||
|
table.exportFile(exportDataTitle,exportData, 'xls');
|
||||||
|
return false;
|
||||||
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -97,11 +103,6 @@ layui.use(['laytpl', 'table', 'jquery', 'form', 'miniTab', 'xmSelect',"laydate"]
|
||||||
,type: 'datetime'
|
,type: 'datetime'
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#exports").on("click",function(){
|
|
||||||
//console.log(exportData)
|
|
||||||
table.exportFile(exportDataTitle,exportData, 'xls');
|
|
||||||
return false;
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,6 +70,7 @@ layui.use(['laytpl', 'table', 'jquery', 'form', 'miniTab', 'xmSelect',"laydate"]
|
||||||
// {templet: '#row-operate', minWidth: 200, fixed: 'right', align: 'center', title: '操作'}
|
// {templet: '#row-operate', minWidth: 200, fixed: 'right', align: 'center', title: '操作'}
|
||||||
]],
|
]],
|
||||||
done: function (res, curr, count) {
|
done: function (res, curr, count) {
|
||||||
|
console.log( res.data);
|
||||||
Tools.setInsTb(insTb);
|
Tools.setInsTb(insTb);
|
||||||
var rdata=[];
|
var rdata=[];
|
||||||
res.data.forEach(function (d,index) {
|
res.data.forEach(function (d,index) {
|
||||||
|
@ -88,14 +89,16 @@ layui.use(['laytpl', 'table', 'jquery', 'form', 'miniTab', 'xmSelect',"laydate"]
|
||||||
|
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
exportData=rdata
|
exportData=rdata;
|
||||||
|
|
||||||
|
$("#exports").on("click",function(){
|
||||||
|
console.log(exportData)
|
||||||
|
table.exportFile(exportDataTitle,exportData, 'xls');
|
||||||
|
return false;
|
||||||
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$("#exports").on("click",function(){
|
|
||||||
//console.log(exportData)
|
|
||||||
table.exportFile(exportDataTitle,exportData, 'xls');
|
|
||||||
return false;
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -72,14 +72,15 @@ layui.use(['laytpl', 'table', 'jquery', 'form', 'miniTab', 'xmSelect',"laydate"]
|
||||||
d.balance,
|
d.balance,
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
exportData=rdata
|
exportData=rdata;
|
||||||
|
$("#exports").on("click",function(){
|
||||||
|
//console.log(exportData)
|
||||||
|
table.exportFile(exportDataTitle,exportData, 'xls');
|
||||||
|
return false;
|
||||||
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$("#exports").on("click",function(){
|
|
||||||
//console.log(exportData)
|
|
||||||
table.exportFile(exportDataTitle,exportData, 'xls');
|
|
||||||
return false;
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue