studentRegistration.wxml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <view class="home">
  2. <form bindsubmit="formSubmit">
  3. <view class='fwb'>
  4. <view class="red-image">
  5. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  6. </view>
  7. <view class="xingbie">姓名</view>
  8. <view class='weui-input'>
  9. <input name="username" disabled value="{{ info.miniName }}" placeholder="请输入姓名" placeholder-style="font-size:25rpx" />
  10. </view>
  11. </view>
  12. <view class='fwb'>
  13. <view class="red-image">
  14. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  15. </view>
  16. <view class="xingbie">性别</view>
  17. <radio-group name="{{item.name}}" data-index='{{index}}' data-idx='{{item.Id}}' data-questTypes='{{item.QuestType}}'>
  18. <label class="checkbox my-choosebox {{ item.checked?'checkboxbox':''}}" checked="{{item.checked}}" wx:for-index="idx" wx:for="{{parameter}}">
  19. <radio value="{{ item.value }}" />{{item.name}}
  20. </label>
  21. </radio-group>
  22. </view>
  23. <view class='fwb'>
  24. <view class="red-image">
  25. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  26. </view>
  27. <view class="xingbie">工作单位</view>
  28. <view class='weui-input'>
  29. <input class="" name="studentDept" value="{{ studentDept }}" placeholder="请输入工作单位" placeholder-style="font-size:25rpx" />
  30. </view>
  31. </view>
  32. <view class='fwb'>
  33. <view class="red-image">
  34. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  35. </view>
  36. <view class="xingbie">文化程度</view>
  37. <picker bindchange="kaihuListChange" name="culture" value="{{kaihuindex}}" range-key="{{'name'}}" range="{{kaihuList}}">
  38. <view class="weui-input aaa">
  39. {{kaihutext == null? '请选择':kaihutext}}
  40. </view>
  41. </picker>
  42. </view>
  43. <view class='fwb'>
  44. <view class="red-image">
  45. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  46. </view>
  47. <view class="xingbie">毕业学校</view>
  48. <view class='weui-input'>
  49. <input class="" name="school" value="{{ info.school }}" placeholder="请输入毕业学校" placeholder-style="font-size:25rpx" />
  50. </view>
  51. </view>
  52. <view class='fwb'>
  53. <view class="red-image">
  54. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  55. </view>
  56. <view class="xingbie">所学专业</view>
  57. <view class='weui-input'>
  58. <input class="" name="mcajor" value="{{ info.mcajor }}" placeholder="请输入所学专业" placeholder-style="font-size:25rpx" />
  59. </view>
  60. </view>
  61. <view class='fwb'>
  62. <view class="red-image">
  63. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  64. </view>
  65. <view class="xingbie">现任职务</view>
  66. <view class='weui-input'>
  67. <picker bindchange="jobChange" range-key="{{'dictLabel'}}" name="studentDuty" value="{{jobIndex}}" range="{{jobArr}}">
  68. <view class="weui-input aaa">
  69. {{jobtext == null?'请选择':jobtext}}
  70. </view>
  71. </picker>
  72. <!-- <input class="" disabled name="studentDuty" value="{{ studentDuty }}" placeholder="请输入现任职务" placeholder-style="font-size:25rpx" /> -->
  73. </view>
  74. </view>
  75. <view class='fwb'>
  76. <view class="red-image">
  77. <image src="/images/quan.png" style="width:20rpx;height:20rpx;"> </image>
  78. </view>
  79. <view class="xingbie">任职时间</view>
  80. <view class='weui-input aaa' style="font-size: 26rpx; line-height: 56rpx;" catchtap="share1">
  81. {{tenure == null ? '':tenure }}
  82. <view wx:if='{{!tenure}}' style="color:#808080;display: inline-block;height:60rpx;line-height:60rpx;font-size:25rpx">{{headmasterText}}</view>
  83. </view>
  84. <van-popup show="{{ postshow }}" position="bottom" custom-style="height: 50%;">
  85. <van-datetime-picker bind:confirm="onConfirm" bind:cancel='onClose' type="date" value="{{ currentDate }}" bind:input="onInput" min-date="{{ minDate }}" formatter="{{ formatter }}" />
  86. </van-popup>
  87. </view>
  88. <view class='fwb'>
  89. <view class="red-image">
  90. <image src="/images/quan.png" style="width:20rpx;height:20rpx"> </image>
  91. </view>
  92. <view class="xingbie">联系电话</view>
  93. <view class='weui-input'>
  94. <input class="" name="studentPhone" value="{{ studentPhone }}" placeholder="请输入联系电话" placeholder-style="font-size:25rpx" />
  95. </view>
  96. </view>
  97. <view style="margin-top: 100rpx;margin-bottom:100rpx">
  98. <van-button round formType="submit">提交报到信息</van-button>
  99. </view>
  100. </form>
  101. </view>