template.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>
  6. <%= htmlWebpackPlugin.options.title %>
  7. </title>
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
  10. <script>
  11. window.userData = {
  12. mobile: "13600000000",
  13. nickname: "Lina",
  14. number: "80000",
  15. type: "0",
  16. email: "test@aft.com",
  17. createTime: "123456789000",
  18. lvl: "0"
  19. };
  20. window.adminData = {};
  21. window.globalConfig = {
  22. //context: "//aft.hnzhiming.com:8080/aft",
  23. context: "//127.0.0.1:8080/aft",
  24. staticHost: "//aft.hnzhiming.com",
  25. uploadPath: "/data/wwwroot/aft/upload",
  26. uploadPrivatePath: "/data/upload"
  27. };
  28. </script>
  29. </head>
  30. <body>
  31. <div id="root">
  32. </div>
  33. </body>
  34. </html>