You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
3.7 KiB
Plaintext

<view class="fixed" hover-class="none" hover-stop-propagation="false" wx:if="{{windowShow}}">
<form bindsubmit="formSubmit">
<view aria-role="dialog" catchtouchmove="modalMove" aria-modal="true" class="fadeIn">
<view class="mask"></view>
<view class="main" style="width:90vw;background:#fff">
<view class="tac f18 fw500 mb24">报名确认</view>
<view class="c3 fss mb8">
<view class="mr10" style="min-width:70px;text-align:right">报名课程</view>
<view>{{info.vocationalName}}</view>
</view>
<view class="fss mb16" wx:if="{{isAgency}}">
<view class="mr10" style="min-width:70px;text-align:right">服务费</view>
<view style="color:#1890ff">{{info.serviceCharge}}</view>
</view>
<view class="fss br4 mb10" style="height:40px;background-color:#f9f9f9">
<view class="mr10" style="min-width:72px;text-align:right"><text class="cf00 f12">*</text>姓名</view>
<view style>
<input placeholder="请输入姓名或称呼" name="name" type="text" placeholder-class="cccc" />
</view>
</view>
<view class="fss br4 mb10" style="height:40px;background-color:#f9f9f9">
<view class="mr10" style="min-width:72px;text-align:right"><text class="cf00 f12">*</text>性别</view>
<radio-group bindchange="radioChange" name="gender" class="fr radiogroup">
<view class="dib" wx:for="{{sex}}" wx:key="value">
<radio value="{{item.id}}" color="#1890ff" checked="{{item.checked}}" style="transform:scale(.8);margin-right:4px;">
<view class="dib f20" style="margin-left:4px">{{item.value}}</view>
</radio>
</view>
</radio-group>
</view>
<view class="fss br4 mb10" style="height:40px;background-color:#f9f9f9">
<view class="mr10" style="min-width:72px;text-align:right"><text class="cf00 f12">*</text>年龄</view>
<picker bindchange="bindPickerChangeAge" style="width:100%" value="{{ageIndex}}" range="{{ageArray}}">
<view class="picker display-flex">
<block wx:if="{{ageIndex == -1}}">
<view class="ccc dib flex-1" style="color:#ccc">请选择年龄</view>
</block>
<block wx:else>
<view class="c3 dib flex-1">{{ageArray[ageIndex]}}</view>
</block>
<i class="iconfont icon-gengduo11 f16 dib pr c9 mr12" style="line-height:1;top:4px;"></i>
</view>
</picker>
</view>
<view class="fss br4" style="height:40px;background-color:#f9f9f9">
<view class="mr10" style="min-width:72px;text-align:right"><text class="cf00 f12">*</text>联系电话</view>
<input placeholder="请输入联系电话" placeholder-class="cccc" name="tel" type="number" />
</view>
<!-- <view class>
<view class="f12 c045 mt10 fss">
<radio-group class="dib">
<radio checked="{{userChecked}}" catchtap="switch1Change" value="0" class="dib" color="#1890ff" style="transform:scale(.7);position:relative;top:-2px;" />
</radio-group>我已阅读并同意
<navigator url="/pages/serviceTerm/index" class="aLink dib">《服务协议》</navigator>及
<navigator url="/pages/secret/index" class="aLink dib">《隐私政策》</navigator>
</view>
</view> -->
<view class="mt8" style="text-align:center">
<button class="customBtn" style="width: 120px !important;color:#999" loading="{{loading}}" hover-class="thover" bindtap="closeTobe">我再想想</button>
<button type="primary" class="dtBtn" style="width: 120px !important;margin-left:16px" loading="{{loading}}" hover-class="button-hover" formType="submit">立即报名</button>
</view>
</view>
</view>
</form>
</view>