1
0

提交代码

This commit is contained in:
2020-08-06 14:45:56 +08:00
commit 9d0d5f4be9
361 changed files with 36445 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Admin\Exporters;
use Encore\Admin\Grid\Exporters\ExcelExporter;
use Maatwebsite\Excel\Concerns\WithMapping;
class ProvinceExporter extends ExcelExporter implements WithMapping
{
protected $fileName = '省市管理.xlsx';
protected $columns = [
'shortname' => '省市区名称',
];
public function map($area): array
{
return [
$area->shortname,
];
}
}