aboutus.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!-- +---------------------------------------------------------------------- -->
  2. <!-- | CRMEB [ CRMEB赋能开发者,助力企业发展 ] -->
  3. <!-- +---------------------------------------------------------------------- -->
  4. <!-- | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved. -->
  5. <!-- +---------------------------------------------------------------------- -->
  6. <!-- | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 -->
  7. <!-- +---------------------------------------------------------------------- -->
  8. <!-- | Author: CRMEB Team <admin@crmeb.com> -->
  9. <!-- +---------------------------------------------------------------------- -->
  10. {extend name="public/container"}
  11. {block name="title"}学院介绍{/block}
  12. {block name="content"}
  13. <style>
  14. .aboutusinfo{margin: 0 .3rem;}
  15. .aboutusinfo .video{
  16. width: 100%;
  17. height: 56vw;
  18. }
  19. .aboutusinfo .info img{max-width: 100%;}
  20. </style>
  21. <div id="app">
  22. <!-- <div class="page-title">
  23. 学院介绍
  24. </div> -->
  25. <!-- <div>
  26. <img src="http://dazaoip.oss-cn-chengdu.aliyuncs.com/95f34202208051421178815.png" style="width: 100%; height: 48.8vw;">
  27. </div> -->
  28. <div class="public_title">
  29. <div class="name">
  30. <div class="title-circular"></div>
  31. <div class="title-text">学院介绍</div>
  32. </div>
  33. </div>
  34. <div class="aboutusinfo">
  35. <div class="video">
  36. <video controls="controls" autoplay width="100%" height="100%" poster="{__WAP_PATH}zsff/images/aboutus.jpg">
  37. <source src="{__WAP_PATH}zsff/images/aboutus.mp4" type="video/mp4">
  38. </video>
  39. </div>
  40. <div class="info">
  41. {:get_config_content('about_us')}
  42. </div>
  43. </div>
  44. <quick-menu></quick-menu>
  45. </div>
  46. {/block}
  47. {block name="foot"}
  48. <script>
  49. require(['vue', 'store', 'helper', '{__WAP_PATH}zsff/js/quick.js'], function (Vue, store, $h) {
  50. var app = new Vue({
  51. el: '#app',
  52. });
  53. })
  54. </script>
  55. {/block}