template.html 970 B

12345678910111213141516171819202122232425262728293031323334353637
  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: "//127.0.0.1:8080/aft",
  23. staticHost: "//aft.hnzhiming.com",
  24. uploadPath: "/data/wwwroot/aft/upload",
  25. uploadPrivatePath: "/data/upload"
  26. };
  27. </script>
  28. </head>
  29. <body>
  30. <div id="root">
  31. </div>
  32. </body>
  33. </html>