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