优化渠道导出

This commit is contained in:
2020-08-28 16:20:36 +08:00
parent 42d56f4c6a
commit e59ceefd16
4 changed files with 59 additions and 53 deletions

View File

@@ -145,14 +145,14 @@ class IndexController extends AdminController
$export->column('redemptionCode', function ($value, $original) {
return $value . "\t";
});
$export->column('price', function ($value, $original) {
return $value . "\t";
});
// $export->column('price', function ($value, $original) {
// return $value . "\t";
// });
$export->column('total', function ($value, $original) {
return $value . "\t";
});
$export->column('资金通道结算', function ($value, $original) {
return strip_tags($value) . "\t";
return strip_tags($value);
});
$export->filename('卡券列表' . date("YmdHis"));
});