123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view class="topbox" style="padding-top:{{top}}px;height:{{top*1+hgt*1}}px;">
- <view class="leftindexbox clearfix" style="top: {{top*1+8}}px;border: 1px solid #d1cfcf;">
- <image bindtap="golastap" class="leftgoto" src="../../../img/back.png"></image>
- <view bindtap="golastap" class="leftitbox"></view>
- <text></text>
- <image bindtap="goindextap" class="gotoindex" src="../../../img/goindex.png"></image>
- <view bindtap="goindextap" class="gotoidxbox"></view>
- </view>
- <view class="fontfpm fontr32 center maintitle titleStyle" style="line-height: 44px;padding-left:82px;">培训课程</view>
- </view>
- <view class="course" style="padding-top:{{top*1+hgt*1}}px;">
- <view class="coverImage">
- <image src="{{detailobj.cover}}" mode="widthFix"/>
- </view>
- <view class="courseTab">
- <view class="{{activeIndex==1?'tabActive':''}}" data-index="1" bindtap="switchTab">简介</view>
- <view class="{{activeIndex==2?'tabActive':''}}" data-index="2" bindtap="switchTab">课程</view>
- </view>
- <view hidden="{{activeIndex!=1}}" class="instruction">
- <view class="iTitle">{{detailobj.title}}</view>
- <view class="iMessage">
- <view class="iMsgleft">
- <view>课时: {{detailobj.course_num}}</view>
- </view>
- <view class="iMsgRight">来源: {{detailobj.from}}</view>
- </view>
- <view class="idescBox">简介</view>
- <view class="iDescInfo">{{detailobj.des}}</view>
- </view>
- <view hidden="{{activeIndex!=2}}" class="courselist">
- <view wx:for="{{courseArr}}" wx:key="{{index}}" data-id="{{item.id}}" class="courseItem" bindtap="viewCourseFun">
- <view class="itemleft">
- <image hidden="{{item.type != 'video'}}" src="../../img/trainvideo.png" mode="widthFix"/>
- <image hidden="{{item.type != 'image'}}" src="../../img/trainarticle.png" mode="widthFix"/>
- <image hidden="{{item.type != 'audio'}}" src="../../img/classaduio.png" mode="widthFix"/>
- <image hidden="{{item.type != 'pdf'}}" src="../../img/pdf.png" mode="widthFix"/>
- </view>
- <view class="itemRight">
- <view class="ellipsis">{{item.title}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="signupBtn" bindtap="signUpFun">立即报名</view>
- <view wx:if="{{dialog}}" class="viewMask" bindtap="hideMaskFunc">
- <view class="viewBlock" catchtap="dothis">
- <view class="viewTitle">立即报名</view>
- <view class="viewContent">
- <view class="viewInput">
- <view>姓名</view>
- <input type="text" value="{{fName}}" bindinput="getinputName" placeholder="请输入姓名" />
- </view>
- <view class="viewInput">
- <view><text>*</text></view>
- <input type="number" value="{{fPhone}}" bindinput="getinputPhone" placeholder="请输入手机号" />
- </view>
- </view>
- <button class="viewButton" loading="{{uloading}}" disabled="{{uloading}}" bindtap="submitFunc">确认</button>
- </view>
- </view>
- <!-- 隐私协议授权 -->
- <privacy-popup bind:agree="agreePrivacy"></privacy-popup>
- <mustlogin loginFlag="{{loginFlag}}" orgname="{{companyobj.company_name}}" logo="{{companyobj.logo}}" mobileflag="{{phoneFlag}}" phoneflag="{{true}}" typenum="{{0}}" id="loginbox" bind:run="login"></mustlogin>
|