Commit 4e919f30 by lujunyi

默认密码为123456

parent 3d4f3fe1
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
use Dcat\Admin\Show; use Dcat\Admin\Show;
use Dcat\EasyExcel\Excel; use Dcat\EasyExcel\Excel;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Support\Str;
// 药店 // 药店
class PharmacyController extends AdminController class PharmacyController extends AdminController
...@@ -216,7 +215,7 @@ protected function form() ...@@ -216,7 +215,7 @@ protected function form()
$admin = new Administrator(); $admin = new Administrator();
$admin->username = $mobile; // 药店手机号作为管理员账号 $admin->username = $mobile; // 药店手机号作为管理员账号
$admin->name = $name; // 药店名称当做用户的姓名 $admin->name = $name; // 药店名称当做用户的姓名
$admin->password = bcrypt(Str::random(10)); // 设置管理员密码 $admin->password = bcrypt('123456'); // 设置管理员密码
$admin->pharmacy_id = $pharmacyId; // 药店ID $admin->pharmacy_id = $pharmacyId; // 药店ID
$admin->save(); // 保存新管理员 $admin->save(); // 保存新管理员
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment