12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!-- +---------------------------------------------------------------------- -->
- <!-- | CRMEB [ CRMEB赋能开发者,助力企业发展 ] -->
- <!-- +---------------------------------------------------------------------- -->
- <!-- | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved. -->
- <!-- +---------------------------------------------------------------------- -->
- <!-- | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 -->
- <!-- +---------------------------------------------------------------------- -->
- <!-- | Author: CRMEB Team <admin@crmeb.com> -->
- <!-- +---------------------------------------------------------------------- -->
- {extend name="public/container"}
- {block name="title"}学院介绍{/block}
- {block name="content"}
- <style>
- .aboutusinfo{margin: 0 .3rem;}
- .aboutusinfo .video{
- width: 100%;
- height: 56vw;
- }
- .aboutusinfo .info img{max-width: 100%;}
- </style>
- <div id="app">
- <!-- <div class="page-title">
- 学院介绍
- </div> -->
- <!-- <div>
- <img src="http://dazaoip.oss-cn-chengdu.aliyuncs.com/95f34202208051421178815.png" style="width: 100%; height: 48.8vw;">
- </div> -->
- <div class="public_title">
- <div class="name">
- <div class="title-circular"></div>
- <div class="title-text">学院介绍</div>
- </div>
- </div>
- <div class="aboutusinfo">
- <div class="video">
- <video controls="controls" autoplay width="100%" height="100%" poster="{__WAP_PATH}zsff/images/aboutus.jpg">
- <source src="{__WAP_PATH}zsff/images/aboutus.mp4" type="video/mp4">
- </video>
- </div>
- <div class="info">
- {:get_config_content('about_us')}
- </div>
- </div>
- <quick-menu></quick-menu>
- </div>
- {/block}
- {block name="foot"}
- <script>
- require(['vue', 'store', 'helper', '{__WAP_PATH}zsff/js/quick.js'], function (Vue, store, $h) {
- var app = new Vue({
- el: '#app',
- });
- })
- </script>
- {/block}
|