123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <view class="home">
- <form bindsubmit="formSubmit">
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">姓名</view>
- <view class='weui-input'>
- <input name="username" disabled value="{{ info.miniName }}" placeholder="请输入姓名" placeholder-style="font-size:25rpx" />
- </view>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">性别</view>
- <radio-group name="{{item.name}}" data-index='{{index}}' data-idx='{{item.Id}}' data-questTypes='{{item.QuestType}}'>
- <label class="checkbox my-choosebox {{ item.checked?'checkboxbox':''}}" checked="{{item.checked}}" wx:for-index="idx" wx:for="{{parameter}}">
- <radio value="{{ item.value }}" />{{item.name}}
- </label>
- </radio-group>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">工作单位</view>
- <view class='weui-input'>
- <input class="" name="studentDept" value="{{ studentDept }}" placeholder="请输入工作单位" placeholder-style="font-size:25rpx" />
- </view>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">文化程度</view>
- <picker bindchange="kaihuListChange" name="culture" value="{{kaihuindex}}" range-key="{{'name'}}" range="{{kaihuList}}">
- <view class="weui-input aaa">
- {{kaihutext == null? '请选择':kaihutext}}
- </view>
- </picker>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">毕业学校</view>
- <view class='weui-input'>
- <input class="" name="school" value="{{ info.school }}" placeholder="请输入毕业学校" placeholder-style="font-size:25rpx" />
- </view>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">所学专业</view>
- <view class='weui-input'>
- <input class="" name="mcajor" value="{{ info.mcajor }}" placeholder="请输入所学专业" placeholder-style="font-size:25rpx" />
- </view>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">现任职务</view>
- <view class='weui-input'>
- <picker bindchange="jobChange" range-key="{{'dictLabel'}}" name="studentDuty" value="{{jobIndex}}" range="{{jobArr}}">
- <view class="weui-input aaa">
- {{jobtext == null?'请选择':jobtext}}
- </view>
- </picker>
- <!-- <input class="" disabled name="studentDuty" value="{{ studentDuty }}" placeholder="请输入现任职务" placeholder-style="font-size:25rpx" /> -->
- </view>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx;"> </image>
- </view>
- <view class="xingbie">任职时间</view>
- <view class='weui-input aaa' style="font-size: 26rpx; line-height: 56rpx;" catchtap="share1">
- {{tenure == null ? '':tenure }}
- <view wx:if='{{!tenure}}' style="color:#808080;display: inline-block;height:60rpx;line-height:60rpx;font-size:25rpx">{{headmasterText}}</view>
- </view>
- <van-popup show="{{ postshow }}" position="bottom" custom-style="height: 50%;">
- <van-datetime-picker bind:confirm="onConfirm" bind:cancel='onClose' type="date" value="{{ currentDate }}" bind:input="onInput" min-date="{{ minDate }}" formatter="{{ formatter }}" />
- </van-popup>
- </view>
- <view class='fwb'>
- <view class="red-image">
- <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
- </view>
- <view class="xingbie">联系电话</view>
- <view class='weui-input'>
- <input class="" name="studentPhone" value="{{ studentPhone }}" placeholder="请输入联系电话" placeholder-style="font-size:25rpx" />
- </view>
- </view>
- <view style="margin-top: 100rpx;margin-bottom:100rpx">
- <van-button round formType="submit">提交报到信息</van-button>
- </view>
- </form>
- </view>
|