...
|
...
|
@@ -388,6 +388,7 @@ trait Backend |
|
|
} else {
|
|
|
$reader = new Xlsx();
|
|
|
}
|
|
|
|
|
|
//导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
|
|
|
$importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
|
|
|
$table = $this->model->getQuery()->getTable();
|
...
|
...
|
@@ -410,7 +411,6 @@ trait Backend |
|
|
}
|
|
|
|
|
|
$currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
|
|
|
var_dump($currentSheet);exit;
|
|
|
$allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
|
|
|
$allRow = $currentSheet->getHighestRow(); //取得一共有多少行
|
|
|
$maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
|
...
|
...
|
|