123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view class="professional">
- <!-- 导航栏 -->
- <u-navbar title="专业介绍" :background="background" title-color="#fff" back-icon-color="#fff" :border-bottom="false"/>
-
- <view class="professional-bg"></view>
-
- <view class="professional-content">
-
- <!-- 专业详情 -->
- <view class="professional-content-info">
- <view class="professional-content-info-left">
- <u-image src="../../../static/img/skill-工业机器人系统运维员.png" width="198" height="220" border-radius="10"/>
- </view>
- <view class="professional-content-info-right">
- <view class="name">
- <view>专业</view>
- <view>工商管理</view>
- <view>(630601)</view>
- </view>
- <view class="study">
- <view>
- 难度<u-rate :count="5" v-model="studyDifficulty" active-color="#EF651F" disabled size="24" :gutter="4"/>
- </view>
- <view>
- 学习时间:3年
- </view>
- </view>
- <view class="price">费用<text>¥100.00</text></view>
- </view>
- </view>
-
- <!-- 课程预览 -->
- <view class="professional-content-preview">
- <view class="professional-content-preview-video">
- <view class="title">
- <view><text>课程预览</text>精彩教学视频</view>
- <view>
- 更多<u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- <view class="list">
- <swiper
- class="swiper"
- :indicator-dots="false"
- :autoplay="false"
- height="196rpx"
- >
- <swiper-item class="swiper-item">
- <u-image src="../../../static/img/major-机电一体化技术.png" width="95%" height="196"/>
- <view class="classes-name">初级经济师-工商管理</view>
- <view class="classes-teacher">讲师:李开复</view>
- </swiper-item>
- <swiper-item class="swiper-item">
- <u-image src="../../../static/img/major-机电一体化技术.png" width="95%" height="196"/>
- <view class="classes-name">初级经济师-工商管理</view>
- <view class="classes-teacher">讲师:李开复</view>
- </swiper-item>
- <swiper-item class="swiper-item">
- <u-image src="../../../static/img/major-机电一体化技术.png" width="95%" height="196"/>
- <view class="classes-name">初级经济师-工商管理</view>
- <view class="classes-teacher">讲师:李开复</view>
- </swiper-item>
- </swiper>
- </view>
- </view>
- <!-- 专业介绍 -->
- <view class="professional-content-preview-introduction">
- <view class="title">
- <view><text>专业介绍</text>深入了解本课程</view>
- </view>
- <view class="content">
- 建筑工程学院前身为贵州职业技术学院工程系,于2009年建成并开始招生,2016年更名为建筑工程学院。现开设有建筑工程技术、工程造价、建设工程管理、建筑室内设计、园林工程技术、市政工程技术、工程测量技术等7个专业,其中建筑工程技术为省级骨干专业,并以建筑工程技术专业为核心建成1个省级重点专业群。
- 在校生规模达3500余人。学院现有教职工60人,其中专任教师44人,管理、教辅人员16人,在专任教师队伍中教授2人,具有副高职称人员17人,中级职称22人,初级职称3人.有近20名教师持有国家一级注册建造师、国家二级注册建筑师、注册造价工程师、注册监理工程师、注册设备工程师、注册二级建造师、网络工程师等执业资格证书。大部分教师具有高教、工程双系列职称,教师双师素质覆盖率为95%。学院下设学院办公室、辅导员办公室、院团总支以及建筑工程技术教研室、建筑室内设计教研室、工程造价与建设工程管理教研室、市政工程技术与园林工程教研室、工程测量教研室、综合实训教研室。建设有建筑工程省级开放实训基地、现代建筑建造技术省级协同创新中心,贵州侗人古建(杨应琪、顾学尧)省级大师工作室。学院紧跟经济社会发展,深耕贵州,不断深化产教融合、校企合作,创新人才培养模式,为贵州经济社会发展提供智力支持和人才支撑。2013年成为贵州建设教育协会成员,2018年成为中国建设教育协会会员单位,2020年成为建筑识图1+X证书试点单位。
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- background: {
- backgroundColor: '#3D5D4C'
- },
- studyDifficulty: 4
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './professionalIntroduction.scss';
- </style>
|