|
@@ -1,4 +1,5 @@
|
|
|
<wxs src="../../utils/util.wxs" module="tools" />
|
|
|
+<view class="{{show?'fixed':''}}">
|
|
|
<image class='banner' mode="widthFix" src="{{info.img}}"></image>
|
|
|
<view class="info">
|
|
|
<view>{{info.name}}</view>
|
|
@@ -59,7 +60,7 @@
|
|
|
<button wx:if='{{info.is_signup && !info.is_user_signuped && !info.is_over}}' bindtap="open" class="post">我要报名</button>
|
|
|
<button wx:if='{{info.is_signup && info.is_user_signuped && !info.is_over}}' disabled="true" class="post">已报名</button>
|
|
|
<button wx:if='{{info.is_over}}' disabled="true" class="post">已结束</button>
|
|
|
-
|
|
|
+</view>
|
|
|
|
|
|
<view class="bg" wx:if='{{show}}'>
|
|
|
<form wx:if='{{page==1}}' class="form" bindsubmit='submit'>
|
|
@@ -78,7 +79,7 @@
|
|
|
</picker>
|
|
|
</view>
|
|
|
<view class="item" wx:if='{{tools.indexOf(info.signup_fields, "age")}}'>
|
|
|
- <label>年龄:</label><input name='age' placeholder-style='color:#999;' placeholder="请输入年龄"></input>
|
|
|
+ <label>年龄:</label><input name='age' type="number" placeholder-style='color:#999;' placeholder="请输入年龄"></input>
|
|
|
</view>
|
|
|
<view class="item" wx:if='{{tools.indexOf(info.signup_fields, "job")}}'>
|
|
|
<label>职务:</label><input name='job' placeholder-style='color:#999;' placeholder="请输入职务"></input>
|
|
@@ -107,7 +108,7 @@
|
|
|
</picker>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
- <label>手机号:</label><input bindinput="phoneChange" name='phone' placeholder-style='color:#999;' placeholder="请输入手机号"></input>
|
|
|
+ <label>手机号:</label><input type="number" bindinput="phoneChange" name='phone' placeholder-style='color:#999;' placeholder="请输入手机号"></input>
|
|
|
<text wx:if='{{text=="发送验证码"}}' bindtap="sendcode" class="code">{{text}}</text>
|
|
|
<text wx:else style="color:#999;" class="code">{{text}}</text>
|
|
|
</view>
|
|
@@ -125,7 +126,8 @@
|
|
|
<view class="form form1" wx:if='{{page==2}}'>
|
|
|
<view class="form_tt">提示</view>
|
|
|
<view class="tips">您的报名信息已提交成功,请尽快缴纳会议费。
|
|
|
- <text>(!参会人员需先缴纳会议费,才能预订酒店住房)</text>
|
|
|
+ <text wx:if='{{info.contype == "offline"}}'>(!参会人员需先缴纳会议费,才能预订酒店住房)</text>
|
|
|
+ <text wx:if='{{info.contype == "online"}}'>(!参会人员需先缴纳会议费,才能参加会议)</text>
|
|
|
</view>
|
|
|
<view class="form_info">
|
|
|
<text>{{info.sign_note}}</text>
|
|
@@ -142,7 +144,8 @@
|
|
|
</view>
|
|
|
|
|
|
<form class="form form2" wx:if='{{page==3}}' bindsubmit='submit1'>
|
|
|
- <view class="form_tt">上传入住凭证</view>
|
|
|
+ <view class="form_tt" wx:if='{{info.contype == "offline"}}'>上传入住凭证</view>
|
|
|
+ <view class="form_tt" wx:if='{{info.contype == "online"}}'>上传参会凭证</view>
|
|
|
<view class="upload" bindtap="upload">
|
|
|
<block wx:if='{{!proof_img}}'>
|
|
|
<image mode="widthFix" src="../images/up.png"></image>
|
|
@@ -193,7 +196,8 @@
|
|
|
<view class="suc">凭证上传成功</view>
|
|
|
<view class="form_info">
|
|
|
<text>待文献情报中心财务部门确认收到会议费后,系统将发送授权码至报名手机。</text>
|
|
|
- <text>请您凭授权码登录报名系统预订酒店住房。</text>
|
|
|
+ <text wx:if='{{info.contype == "offline"}}'>请您凭授权码登录报名系统预订酒店住房。</text>
|
|
|
+ <text wx:if='{{info.contype == "online"}}'>请您凭授权码登录报名系统获取参会信息。</text>
|
|
|
</view>
|
|
|
<!-- <button bindtap="sure" class="post">关闭</button> -->
|
|
|
<button bindtap="home" class="post">确认</button>
|