85 lines
2.9 KiB
Plaintext
85 lines
2.9 KiB
Plaintext
<view class="register">
|
|
<view class="row" style="height: auto">
|
|
<view class="info-name">公开经历:</view>
|
|
<view class="info-text" style="height: auto">
|
|
<view class="section" style="height: auto">
|
|
<radio-group class="radio-group" bindchange="changeOpen">
|
|
<label class="radio">
|
|
<radio value="0" checked="checked"/>否
|
|
<radio value="1"/>是
|
|
</label>
|
|
</radio-group>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="info-name">市:</view>
|
|
<view class="info-text">
|
|
<view class="section">
|
|
<picker bindchange="cityChange" value="{{teamCityIndex}}" range="{{teamCityArray}}">
|
|
<view class="picker">
|
|
{{teamCityArray[teamCityIndex]}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row" hidden="{{countyShowStatus}}">
|
|
<view class="info-name">旗县区:</view>
|
|
<view class="info-text">
|
|
<view class="section">
|
|
<picker bindchange="countyChange" value="{{teamCountyIndex}}" range="{{teamCountyArray}}">
|
|
<view class="picker">
|
|
{{teamCountyArray[teamCountyIndex]}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row" hidden="{{areaShowStatus}}">
|
|
<view class="info-name">乡镇村:</view>
|
|
<view class="info-text">
|
|
<view class="section">
|
|
<picker bindchange="areaChange" value="{{teamAreaIndex}}" range="{{teamAreaArray}}">
|
|
<view class="picker">
|
|
{{teamAreaArray[teamAreaIndex]}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row" style="height: auto">
|
|
<view class="info-name">服务类别:</view>
|
|
<view class="info-text" style="height: auto">
|
|
<view class="section" style="height: auto">
|
|
<checkbox-group bindchange="serviceTypeChange">
|
|
<checkbox value='{{item.dictionaryId}}' wx:for="{{serviceType}}">
|
|
<view>{{item.dictionaryName}}</view>
|
|
</checkbox>
|
|
</checkbox-group>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row" style="height: auto">
|
|
<view class="info-name">服务领域或行业:</view>
|
|
<view class="info-text" style="height: auto">
|
|
<view class="section" style="height: auto">
|
|
<checkbox-group bindchange="serviceIndustryChange">
|
|
<checkbox value='{{item.dictionaryId}}' wx:for="{{serviceIndustry}}">
|
|
<view>{{item.dictionaryName}}</view>
|
|
</checkbox>
|
|
</checkbox-group>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom">
|
|
<view class="is-agree">
|
|
<checkbox-group bindchange="changeAgree">
|
|
<label class="checkbox">
|
|
<checkbox value="{{isAgree}}" checked="{{isAgree}}" />我已阅读并同意<text class="bargain">《志愿者注册服务协议》</text>
|
|
</label>
|
|
</checkbox-group>
|
|
</view>
|
|
<view class="submit" bindtap="submitRegister">立即注册</view>
|
|
</view> |