From 8d7411dbaafe73e6449d6b21adaca91a64038f97 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 11 Mar 2022 14:09:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=90=8E=E5=8F=B0=E8=87=AA?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E8=84=9A=E6=9C=AC=E5=8F=8A=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/view/full.html | 2 ++ app/admin/view/index/index.html | 2 ++ config/database.php | 6 +++--- public/static/admin.js | 2 +- public/static/extra/script.js | 23 +++++++++++++++++++++++ public/static/extra/style.css | 1 + 6 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 public/static/extra/script.js create mode 100644 public/static/extra/style.css diff --git a/app/admin/view/full.html b/app/admin/view/full.html index 7386303ac..11fa9810e 100644 --- a/app/admin/view/full.html +++ b/app/admin/view/full.html @@ -12,6 +12,7 @@ + {block name="style"}{/block} @@ -25,6 +26,7 @@ + {block name='script'}{/block} \ No newline at end of file diff --git a/app/admin/view/index/index.html b/app/admin/view/index/index.html index 3d3a7890d..af59fbd6e 100644 --- a/app/admin/view/index/index.html +++ b/app/admin/view/index/index.html @@ -13,6 +13,7 @@ + {block name="style"}{/block} @@ -54,6 +55,7 @@ + {block name='script'}{/block} diff --git a/config/database.php b/config/database.php index eed0891d5..9a5158940 100644 --- a/config/database.php +++ b/config/database.php @@ -29,13 +29,13 @@ return [ // 数据库类型 'type' => 'mysql', // 服务器地址 - 'hostname' => '127.0.0.1', + 'hostname' => 'thinkadmin.top', // 数据库名 'database' => 'admin_v6', // 用户名 - 'username' => 'admin_v6', + 'username' => 'admin', // 密码 - 'password' => 'FbYBHcWKr2', + 'password' => '@admin123', // 端口 'hostport' => '3306', // 数据库连接参数 diff --git a/public/static/admin.js b/public/static/admin.js index cf5e968f7..4f45cf34e 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -245,7 +245,7 @@ $(function () { if (this.nodeName === 'IMG') this.src = this.dataset.lazySrc; else this.style.backgroundImage = 'url(' + this.dataset.lazySrc + ')'; } - }), $dom; + }), $body.trigger('reInit', $dom), $dom; }; /*! 在内容区显示视图 */ this.show = function (html) { diff --git a/public/static/extra/script.js b/public/static/extra/script.js new file mode 100644 index 000000000..dc3dfb360 --- /dev/null +++ b/public/static/extra/script.js @@ -0,0 +1,23 @@ +// --------------------------------------- +// 自定义后台扩展脚本 +// 需要在加载 admin.js 后载入此文件 +// --------------------------------------- +$(function () { + window.$body = $('body'); + + /*! 初始化异步加载的内容扩展动作 */ + // $body.on('reInit', function (evt, $dom) { + // console.log('Event.reInit', $dom); + // }); + + /*! 追加 require 配置参数 + /*! 加载的文件不能与主配置重复 */ + // require.config({ + // paths: { + // 'vue': ['plugs/vue/vue.min'], + // }, + // shim: { + // 'vue': ['json'] + // }, + // }); +}); \ No newline at end of file diff --git a/public/static/extra/style.css b/public/static/extra/style.css new file mode 100644 index 000000000..f2878f087 --- /dev/null +++ b/public/static/extra/style.css @@ -0,0 +1 @@ +/*! 自定义扩展样式文件 */ \ No newline at end of file