material-list.ftl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--图文素材页-->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="UTF-8">
  6. <title></title>
  7. <!-- <#include "/include/head-file.ftl"/> -->
  8. <!--#include virtual="../include/head-file.ftl" -->
  9. <link rel="stylesheet" href="../../../static/mweixin/css/material-list.css">
  10. </head>
  11. <body>
  12. <div id="app">
  13. <el-container>
  14. <el-aside width="140px">
  15. <!--#include virtual="../include/menu.ftl" -->
  16. </el-aside>
  17. <el-container>
  18. <el-header height="50px">
  19. <el-row class="ms-fr">
  20. <el-button type="success">保存</el-button>
  21. <el-button>更新</el-button>
  22. <el-button>返回</el-button>
  23. </el-row>
  24. </el-header>
  25. <el-main class="ms-admin-material-list">
  26. <div class="ms-admin-material-item">
  27. </div>
  28. </el-main>
  29. </el-container>
  30. </el-container>
  31. </div>
  32. </body>
  33. </html>
  34. <script>
  35. new Vue({
  36. el: "#app",
  37. data: {},
  38. methods: {},
  39. mounted: function() {}
  40. })
  41. </script>