|
|
@@ -6,7 +6,7 @@
|
|
|
<text>时间:{{info.uptime}} </text>
|
|
|
<text>地址:{{info.province}}{{info.area}}</text>
|
|
|
</view>
|
|
|
-
|
|
|
+
|
|
|
<view class="content">
|
|
|
<view class="tt">会议简介</view>
|
|
|
<view class="p {{zk1==1?'':'sq'}}">
|
|
|
@@ -29,14 +29,15 @@
|
|
|
<button bindtap="open" class="post">我要报名</button>
|
|
|
|
|
|
<view class="bg" wx:if='{{show}}'>
|
|
|
- <form class="form">
|
|
|
+ <form class="form" bindsubmit='submit'>
|
|
|
+ <image bindtap='close' class='close' mode="widthFix" src="../images/close.png"></image>
|
|
|
<view class="form_tt">请填写报名信息</view>
|
|
|
<view class="item">
|
|
|
- <label>姓名:</label><input placeholder-style='color:#999;' placeholder="请输入姓名"></input>
|
|
|
+ <label>姓名:</label><input name='name' placeholder-style='color:#999;' placeholder="请输入姓名"></input>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
<label>性别:</label>
|
|
|
- <picker bindchange="bindPickerChange" value="{{sex}}" range="{{sex_array}}">
|
|
|
+ <picker name='sex' bindchange="bindPickerChange" value="{{sex}}" range="{{sex_array}}">
|
|
|
<view class="picker">
|
|
|
<text wx:if='sex<0'>请选择</text>
|
|
|
{{sex_array[sex]}}
|
|
|
@@ -44,31 +45,40 @@
|
|
|
</picker>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
- <label>职务:</label><input placeholder-style='color:#999;' placeholder="请输入职务"></input>
|
|
|
+ <label>职务:</label><input name='job' placeholder-style='color:#999;' placeholder="请输入职务"></input>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
<label>所属单位:</label>
|
|
|
- <picker bindchange="bindPickerChange" value="{{job}}" range="{{job_array}}">
|
|
|
+ <picker name='is_caos' bindchange="bindPickerChange" value="{{job}}" range="{{job_array}}">
|
|
|
<view class="picker">
|
|
|
{{job_array[job]}}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
+
|
|
|
<view class="item">
|
|
|
- <label>单位名称:</label><input placeholder-style='color:#999;' placeholder="请输入姓名"></input>
|
|
|
+ <label>单位名称:</label>
|
|
|
+ <input wx:if='{{job==0}}' placeholder-style='color:#999;' placeholder="请输入姓名"></input>
|
|
|
+
|
|
|
+ <picker wx:else mode="multiSelector" bindchange="bindMultiPickerChange" range-key='value'
|
|
|
+ bindcolumnchange="bindMultiPickerColumnChange" value="{{index}}" range="{{list}}">
|
|
|
+ <view class="picker">
|
|
|
+ {{list[0][index[0]].value}} {{list[1][index[1]].value}} {{list[2][index[2]].value}}
|
|
|
+ </view>
|
|
|
+ </picker>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
- <label>手机号:</label><input placeholder-style='color:#999;' placeholder="请输入手机号"></input><text class="code">发送验证码</text>
|
|
|
+ <label>手机号:</label><input name='phone' placeholder-style='color:#999;' placeholder="请输入手机号"></input><text class="code">发送验证码</text>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
<label>验证码:</label><input placeholder-style='color:#999;' placeholder="请输入验证码"></input>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
- <label>邮箱:</label><input placeholder-style='color:#999;' placeholder="请输入邮箱"></input>
|
|
|
+ <label>邮箱:</label><input name='email' placeholder-style='color:#999;' placeholder="请输入邮箱"></input>
|
|
|
</view>
|
|
|
<text class="ts">温馨提示</text>
|
|
|
<text class="ts">报名成功后工作人员会尽快与您取得联系</text>
|
|
|
- <button bindtap="post" class="post">提交报名信息</button>
|
|
|
+ <button formType="submit" class="post">提交报名信息</button>
|
|
|
</form>
|
|
|
</view>
|
|
|
|