From e6d809445d485b826a84a8c4bc903a05fd0937b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 13 Oct 2022 12:48:03 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E4=BD=BF=E7=94=A8=20sqlite?= =?UTF-8?q?=20=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + composer.json | 3 +- config/database.php | 20 +++++++- .../migrations/20221012144534_system_user.php | 2 +- .../migrations/20221013034618_system_menu.php | 50 +++++++++++++++++++ 5 files changed, 72 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ac0d76eaf..5fba41b40 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ runtime safefile nbproject composer.lock +database/sqlite.db public/upload public/.user.ini public/favicon.ico diff --git a/composer.json b/composer.json index f47db1e83..7a9c7c43f 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,8 @@ "scripts": { "post-autoload-dump": [ "@php think service:discover", - "@php think vendor:publish" + "@php think vendor:publish", + "@php think migrate:run" ] } } diff --git a/config/database.php b/config/database.php index eed0891d5..e28767aea 100644 --- a/config/database.php +++ b/config/database.php @@ -16,7 +16,7 @@ return [ // 默认使用的数据库连接配置 - 'default' => 'mysql', + 'default' => 'sqlite', // 自定义时间查询规则 'time_query_rule' => [], // 自动写入时间戳字段 @@ -25,7 +25,7 @@ return [ 'datetime_format' => 'Y-m-d H:i:s', // 数据库连接配置信息 'connections' => [ - 'mysql' => [ + 'mysql' => [ // 数据库类型 'type' => 'mysql', // 服务器地址 @@ -61,5 +61,21 @@ return [ // 开启字段类型缓存 'fields_cache' => !app()->isDebug(), ], + 'sqlite' => [ + 'charset' => 'utf8', + // 数据库类型 + 'type' => 'sqlite', + // 数据库文件 + 'database' => app()->getRootPath() . 'database/sqlite.db', + // 监听执行日志 + 'trigger_sql' => true, + // 其他参数字段 + 'deploy' => 0, + 'prefix' => '', + 'hostname' => '', + 'hostport' => '', + 'username' => '', + 'password' => '', + ], ], ]; diff --git a/database/migrations/20221012144534_system_user.php b/database/migrations/20221012144534_system_user.php index 6060783c9..27736a3e4 100644 --- a/database/migrations/20221012144534_system_user.php +++ b/database/migrations/20221012144534_system_user.php @@ -7,7 +7,7 @@ use think\migration\Migrator; */ class SystemUser extends Migrator { - protected $name = 'system_user1'; + protected $name = 'system_user'; public function change() { diff --git a/database/migrations/20221013034618_system_menu.php b/database/migrations/20221013034618_system_menu.php index e2f84a11d..0ab857c57 100644 --- a/database/migrations/20221013034618_system_menu.php +++ b/database/migrations/20221013034618_system_menu.php @@ -29,5 +29,55 @@ class SystemMenu extends Migrator ->addIndex('sort', ['name' => 'idx_system_menu_sort']) ->addIndex('status', ['name' => 'idx_system_menu_status']) ->save(); + + // 初始化菜单数据 + $this->execute(<<name}` VALUES (1, 0, '控制台', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (2, 1, '数据管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (3, 2, '数据统计报表', 'layui-icon layui-icon-theme', 'data/total.portal/index', 'data/total.portal/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (4, 2, '轮播图片管理', 'layui-icon layui-icon-carousel', 'data/base.slider/index', 'data/base.slider/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (5, 2, '页面内容管理', 'layui-icon layui-icon-read', 'data/base.pager/index', 'data/base.pager/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (6, 2, '文章内容管理', 'layui-icon layui-icon-template', 'data/news.item/index', 'data/news.item/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (7, 2, '支付参数管理', 'layui-icon layui-icon-rmb', 'data/base.payment/index', 'data/base.payment/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (8, 2, '系统通知管理', 'layui-icon layui-icon-notice', 'data/base.message/index', 'data/base.message/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (9, 2, '微信小程序配置', 'layui-icon layui-icon-set', 'data/base.config/wxapp', 'data/base.config/wxapp', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (10, 2, '邀请二维码设置', 'layui-icon layui-icon-cols', 'data/base.config/cropper', 'data/base.config/cropper', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (11, 1, '用户管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (12, 11, '会员用户管理', 'layui-icon layui-icon-user', 'data/user.admin/index', 'data/user.admin/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (13, 11, '余额充值管理', 'layui-icon layui-icon-rmb', 'data/user.balance/index', 'data/user.balance/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (14, 11, '用户返利管理', 'layui-icon layui-icon-transfer', 'data/user.rebate/index', 'data/user.rebate/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (15, 11, '用户提现管理', 'layui-icon layui-icon-component', 'data/user.transfer/index', 'data/user.transfer/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (16, 11, '用户等级管理', 'layui-icon layui-icon-senior', 'data/base.upgrade/index', 'data/base.upgrade/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (17, 11, '用户折扣方案', 'layui-icon layui-icon-set', 'data/base.discount/index', 'data/base.discount/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (18, 1, '商城管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (19, 18, '商品数据管理', 'layui-icon layui-icon-star', 'data/shop.goods/index', 'data/shop.goods/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (20, 18, '商品分类管理', 'layui-icon layui-icon-tabs', 'data/shop.cate/index', 'data/shop.cate/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (21, 18, '订单数据管理', 'layui-icon layui-icon-template', 'data/shop.order/index', 'data/shop.order/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (22, 18, '订单发货管理', 'layui-icon layui-icon-transfer', 'data/shop.send/index', 'data/shop.send/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (23, 18, '快递公司管理', 'layui-icon layui-icon-website', 'data/base.postage.company/index', 'data/base.postage.company/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (24, 18, '邮费模板管理', 'layui-icon layui-icon-template-1', 'data/base.postage.template/index', 'data/base.postage.template/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (25, 0, '微信管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (26, 25, '微信管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (27, 26, '微信接口配置', 'layui-icon layui-icon-set', '', 'wechat/config/options', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (28, 26, '微信支付配置', 'layui-icon layui-icon-rmb', '', 'wechat/config/payment', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (29, 25, '微信定制', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (30, 29, '微信粉丝管理', 'layui-icon layui-icon-username', '', 'wechat/fans/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (31, 29, '微信菜单配置', 'layui-icon layui-icon-cellphone', '', 'wechat/menu/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (32, 29, '微信图文管理', 'layui-icon layui-icon-template-1', '', 'wechat/news/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (33, 29, '回复规则管理', 'layui-icon layui-icon-engine', '', 'wechat/keys/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (34, 29, '关注自动回复', 'layui-icon layui-icon-release', 'wechat/auto/index', 'wechat/auto/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (35, 0, '系统管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (36, 35, '系统配置', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (37, 36, '系统参数配置', 'layui-icon layui-icon-set', '', 'admin/config/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (38, 36, '系统任务管理', 'layui-icon layui-icon-log', '', 'admin/queue/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (39, 36, '系统日志管理', 'layui-icon layui-icon-form', '', 'admin/oplog/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (40, 36, '数据字典管理', 'layui-icon layui-icon-code-circle', 'admin/base/index', 'admin/base/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (41, 36, '系统文件管理', 'layui-icon layui-icon-carousel', 'admin/file/index', 'admin/file/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (42, 36, '系统菜单管理', 'layui-icon layui-icon-layouts', '', 'admin/menu/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (43, 35, '权限管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (44, 43, '访问权限管理', 'layui-icon layui-icon-vercode', '', 'admin/auth/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO `{$this->name}` VALUES (45, 43, '系统用户管理', 'layui-icon layui-icon-username', '', 'admin/user/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +SQL + ); } }