128 lines
4.5 KiB
Plaintext
128 lines
4.5 KiB
Plaintext
<view class="register">
|
|
<view class="row" wx:if="{{volunteerMsg}}" style="color:red;margin-bottom:15rpx;">您已经是志愿者,可修改以下信息!</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">
|
|
<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}}" wx:key="index">
|
|
<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}}" wx:key="index">
|
|
<view>{{item.dictionaryName}}</view>
|
|
</checkbox>
|
|
</checkbox-group>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="info-name">职业:</view>
|
|
<view class="info-text">
|
|
<view class="section">
|
|
<picker value="{{occupationyIndex}}" range="{{occupationArray}}">
|
|
<view class="picker">
|
|
{{occupationArray[occupationIndex]}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="row" style="height: auto">
|
|
<view class="info-name">工作单位及职务:</view>
|
|
<view class="info-text">
|
|
<input name="work" placeholder="请输入工作单位及职务" model:value="{{work}}"></input>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="row">
|
|
<view class="info-name">特长爱好:</view>
|
|
<view class="info-text">
|
|
<input name="hobby" placeholder="请输入特长爱好" model:value="{{hobby}}"></input>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="row" style="height: auto">
|
|
<view class="info-name">个人简历:</view>
|
|
<view class="info-text" style="height: auto">
|
|
<textarea placeholder="请输入个人简历" model:value="{{cv}}"></textarea>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="row" style="height: auto">
|
|
<view class="info-name">备注:</view>
|
|
<view class="info-text" style="height: auto">
|
|
<textarea placeholder="请输入备注" model:value="{{remark}}"></textarea>
|
|
</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" data-type="volunteer" bindtap="userAgree">《志愿者注册服务协议》</text>
|
|
</label>
|
|
</checkbox-group>
|
|
</view>
|
|
<view class="submit" bindtap="submitRegister" wx:if="{{!volunteerMsg}}">立即注册</view>
|
|
<view class="submit" bindtap="submitRegister" wx:else>立即修改</view>
|
|
</view> |