modified 初始化自动构建

This commit is contained in:
zhaoxiang 2021-02-23 19:13:26 +08:00
parent 49997cad87
commit e69aec0776
2 changed files with 17 additions and 4 deletions

View File

@ -39,6 +39,10 @@ class AutoBuildFile extends Command {
$dsn['menu'] = strlen($input) ? $input : 1; $dsn['menu'] = strlen($input) ? $input : 1;
if ($dsn['menu']) { if ($dsn['menu']) {
$output->comment('Please input menu fid (default 0):');
$input = trim(fgets(fopen('php://stdin', 'r')));
$dsn['fid'] = strlen($input) ? $input : 0;
$output->comment('Do you need to create a route? 1 or 0 (default 0):'); $output->comment('Do you need to create a route? 1 or 0 (default 0):');
$input = trim(fgets(fopen('php://stdin', 'r'))); $input = trim(fgets(fopen('php://stdin', 'r')));
$dsn['route'] = strlen($input) ? $input : 0; $dsn['route'] = strlen($input) ? $input : 0;
@ -56,7 +60,7 @@ class AutoBuildFile extends Command {
$dsn['table'] = strlen($input) ? $input : 0; $dsn['table'] = strlen($input) ? $input : 0;
} }
$output->comment('please choose module (1:admin;2:api, default 1):'); $output->comment('Please choose module (1:admin;2:api, default 1):');
$input = trim(fgets(fopen('php://stdin', 'r'))); $input = trim(fgets(fopen('php://stdin', 'r')));
$dsn['module'] = strlen($input) ? $input : 1; $dsn['module'] = strlen($input) ? $input : 1;

View File

@ -18,12 +18,21 @@ class AutoBuild {
'name' => '', // 唯一标识 'name' => '', // 唯一标识
'module' => 1, // 构建类型 1admin2api 'module' => 1, // 构建类型 1admin2api
'table' => 0, // 是否创建表 'table' => 0, // 是否创建表
'modelName' => '' // 表名称 'modelName' => '', // 表名称
'fid' => 0 // 父级ID
]; ];
private $basePath = '';
public function run($config = []) { public function run($config = []) {
$config = array_merge($this->config, $config); $this->config = array_merge($this->config, $config);
dump($config);
if ($this->config['module'] == 1) {
}
if ($this->config['control'] && $this->config['name']) {
$this->buildControl();
}
} }
/** /**