forked from nsjcy/frontEnd/nsjcy

LAPTOP-RI7D261L\Mr Ke
2020-02-03 db3fdea847234226f6721fa347e667c267e16343
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--pages/fzpxInfo/fzpxInfo.wxml-->
<view class="fzpxInfo-bg">
  <swiper class="screen-swiper square-dot" indicator-dots="true" circular="true" autoplay="true" interval="5000" duration="500">
    <swiper-item wx:for="{{swiperList}}" wx:key>
      <image src="{{item.url}}" mode="aspectFill" wx:if="{{item.type=='image'}}"></image>
      <video src="{{item.url}}" autoplay loop muted show-play-btn="{{false}}" controls="{{false}}" objectFit="cover" wx:if="{{item.type=='video'}}"></video>
    </swiper-item>
  </swiper>
 
 
  <view class="fzpxInfo-main">
    <view class="fzpxInfo-main-t">{{title}}</view>
    <view class="fzpxInfo-main-group">
      <view class="fzpxInfo-main-group-title">培训时间</view>
      <view class="fzpxInfo-main-group-around">2019/11/01 00:00</view>
    </view>
    <view class="fzpxInfo-main-group">
      <view class="fzpxInfo-main-group-title">报名人数</view>
      <view class="fzpxInfo-main-group-around">{{num}}</view>
    </view>
    <view class="fzpxInfo-main-group">
      <view class="fzpxInfo-main-group-title">组织方</view>
      <view>
        <view class="fzpxInfo-main-group-around">{{yuan}}</view>
      </view>
    </view>
    <view class="fzpxInfo-main-group">
      <view class="fzpxInfo-main-group-title">培训对象</view>
      <view class="fzpxInfo-main-group-around">{{duixiang}}</view>
    </view>
    <view class="fzpxInfo-main-group" style="display:block">
      <view class="fzpxInfo-main-group-title">培训内容</view>
      <view>
        <view class="fzpxInfo-main-group-around">{{neirong1}}</view>
        <view class="fzpxInfo-main-group-around">{{neirong2}}</view>
        <view class="fzpxInfo-main-group-around">{{neirong3}}</view>
      </view>
    </view>
  </view>
 
  <view class="fzpxInfo-foot margin-top">
    <!-- <view class="fzpxInfo-foot-title">报名须知</view>
    <view class="fzpxInfo-foot-txt">请确认所有参赛人员的排列顺序。相关信息会在参赛证件、参赛证明、获取证书等重要比赛文件中提现。</view>
    <view class="fzpxInfo-foot-txt">由于参赛队信息填报原因产生的任何错误,在相关文件完成制作后一律不予修改;</view> -->
    <view class="fzpxInfo-foot-button" bindtap='linkFunction'>我要报名</view>
  </view>
</view>