script.js 936 B

123456789101112131415161718192021222324252627282930
  1. // --------------------------------------------------
  2. // 自定义后台扩展脚本,需要在加载 admin.js 后载入
  3. // 使用 php think xadmin:install static 时不会更新此文件
  4. // --------------------------------------------------
  5. $(function () {
  6. window.$body = $('body');
  7. /*! 初始化异步加载的内容扩展动作 */
  8. // $body.on('reInit', function (evt, $dom) {
  9. // console.log('Event.reInit', $dom);
  10. // });
  11. /*! 追加 require 配置参数
  12. /*! 加载的文件不能与主配置重复 */
  13. // require.config({
  14. // paths: {
  15. // 'vue': ['plugs/vue/vue.min'],
  16. // },
  17. // shim: {
  18. // 'vue': ['json']
  19. // },
  20. // });
  21. // // 基于 Require 加载测试
  22. // require(['vue', 'md5'], function (vue, md5) {
  23. // console.log(vue)
  24. // console.log(md5.hash('content'))
  25. // });
  26. /*! 其他 javascript 脚本代码 */
  27. });