info-edu.wxml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!--pages/edit-info/info-base/info-base.wxml-->
  2. <form bindsubmit="formSubmit" bindreset="formReset">
  3. <view class="base">
  4. <!-- 第一栏 学校 -->
  5. <view class="item">
  6. <view class="item-left">
  7. <text style="color:red;font-size:14px;margin-top:8rpx;">*</text>
  8. <text style="font-size:14px;margin-left:10rpx;">学校</text>
  9. </view>
  10. <view class="item-right">
  11. <!-- <input class="item-input" placeholder="请选择" name="school" value="{{school}}" disabled="{{true}}"></input> -->
  12. <input class="item-input" placeholder="请填写" name="school" value="{{data.school}}"></input>
  13. <!-- <image src="../../../image/youh.png" class="item-icon"></image> -->
  14. </view>
  15. </view>
  16. <!-- 第二栏 主修专业 -->
  17. <view class="item">
  18. <view class="item-left">
  19. <text style="color:red;font-size:14px;margin-top:8rpx;">*</text>
  20. <text style="font-size:14px;margin-left:10rpx;">主修专业</text>
  21. </view>
  22. <view class="item-right">
  23. <input class="item-input" placeholder="请填写" name="major" value="{{data.major}}"></input>
  24. </view>
  25. </view>
  26. <!-- 第三栏 学历 -->
  27. <view class="item">
  28. <view class="item-left">
  29. <text style="color:red;font-size:14px;margin-top:8rpx;">*</text>
  30. <text style="font-size:14px;margin-left:10rpx;">学历</text>
  31. </view>
  32. <view class="item-right">
  33. <!-- <input class="item-input" placeholder="请选择" name="degree" value="{{degree}}" disabled="{{true}}"></input>
  34. <image src="../../../image/youh.png" class="item-icon"></image> -->
  35. <input class="item-input" placeholder="请填写" name="degree" value="{{data.degree}}"></input>
  36. </view>
  37. </view>
  38. <!-- 第四栏 入学时间 -->
  39. <view class="item">
  40. <view class="item-left">
  41. <text style="color:red;font-size:14px;margin-top:8rpx;">*</text>
  42. <text style="font-size:14px;margin-left:10rpx;">入学时间</text>
  43. </view>
  44. <view class="item-right" bindtap="show" data-id="1">
  45. <input class="item-input" placeholder="请选择" name="startTime" value="{{data.startTime}}" disabled="{{true}}"></input>
  46. <image src="../../../image/youh.png" class="item-icon"></image>
  47. </view>
  48. </view>
  49. <!-- 第五栏 毕业时间 -->
  50. <view class="item-end">
  51. <view class="item-left">
  52. <text style="color:red;font-size:14px;margin-top:8rpx;">*</text>
  53. <text style="font-size:14px;margin-left:10rpx;">毕业时间</text>
  54. </view>
  55. <view class="item-right" bindtap="show" data-id="2">
  56. <input class="item-input" placeholder="请选择" name="endTime" value="{{data.endTime}}" disabled="{{true}}"></input>
  57. <image src="../../../image/youh.png" class="item-icon"></image>
  58. </view>
  59. </view>
  60. <!-- 第六栏 在校经历 -->
  61. <view class="textarea">
  62. <view class="textarea-one">
  63. <text style="color:red;font-size:14px;margin-top:8rpx;">*</text>
  64. <text class="textarea-tittle">在校经历</text>
  65. </view>
  66. <textarea class="textarea-data" placeholder=' 请填写您的在校经历'
  67. minlength="{{min}}" maxlength="{{max}}" bindinput="inputs" value="{{data.experience}}" name="experience">
  68. <text class="currentWordNumber">{{currentWordNumber|0}}/{{max}}</text>
  69. </textarea>
  70. </view>
  71. <!-- 底部按钮 -->
  72. <view class="button-group">
  73. <button formType="reset" class="button-reset">重置</button>
  74. <button formType="submit" class="button-submit">提交</button>
  75. </view>
  76. <!-- 时间选择器 -->
  77. <tui-datetime id="tui-dateTime-ctx" type="{{type}}" startYear="{{startYear}}" endYear="{{endYear}}" cancelColor="{{cancelColor}}" color="{{color}}"
  78. setDateTime="{{setDateTime}}" bindconfirm="change"></tui-datetime>
  79. </view>
  80. </form>