From 5ce8c3feaa53a378480201207efa0d16e0807a3a Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Wed, 24 Feb 2021 16:22:12 +0800 Subject: [PATCH] =?UTF-8?q?modified=20=E5=88=9D=E5=A7=8B=E5=8C=96=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/command/AutoBuildFile.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app/command/AutoBuildFile.php b/app/command/AutoBuildFile.php index 4afed4e..47357de 100644 --- a/app/command/AutoBuildFile.php +++ b/app/command/AutoBuildFile.php @@ -36,20 +36,20 @@ class AutoBuildFile extends Command { $output->comment('Please choose module (1:admin;2:api, default 1):'); $input = trim(fgets(fopen('php://stdin', 'r'))); $dsn['module'] = strlen($input) ? $input : 1; - } - $output->comment('Do you need to build a menu? 1 or 0 (default 1):'); - $input = trim(fgets(fopen('php://stdin', 'r'))); - $dsn['menu'] = strlen($input) ? $input : 1; - - if ($dsn['menu']) { - $output->comment('Please input menu fid (default 0):'); + $output->comment('Do you need to build a menu? 1 or 0 (default 1):'); $input = trim(fgets(fopen('php://stdin', 'r'))); - $dsn['fid'] = strlen($input) ? $input : 0; + $dsn['menu'] = strlen($input) ? $input : 1; - $output->comment('Do you need to create a route? 1 or 0 (default 0):'); - $input = trim(fgets(fopen('php://stdin', 'r'))); - $dsn['route'] = strlen($input) ? $input : 0; + 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):'); + $input = trim(fgets(fopen('php://stdin', 'r'))); + $dsn['route'] = strlen($input) ? $input : 0; + } } $output->comment('Do you need to build a model? 1 or 0 (default 0):');