index.wxml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!--index.wxml-->
  2. <import src="item.wxml"/>
  3. <template name="line">
  4. <view style="width:95%;height:1px;margin:0 10px;background-color:#e5e5e5;box-sizing: border-box;"/>
  5. </template>
  6. <mp-toptips msg="{{error}}" type="error" show="{{error}}"></mp-toptips>
  7. <view class="main_container">
  8. <text style="margin:15px;font-size:9pt;color:#AAAAAA;">您可以通过填写信息并点击提交,采集数据</text>
  9. <view class="menu">
  10. <view style="display:flex;justify-content:space-between;align-items:center;width:98%;background-color:#FFFFFF;height:50px;" bindtap="bindChangePhone">
  11. <text style="width:85px;margin-left:10px;font-size:10pt;">手机号</text>
  12. <view style="display:flex;justify-content:flex-start;align-items:center;width:100%;margin-left:5px;">
  13. <text style="font-size:10pt;color:grey;">{{phone_number}}</text>
  14. </view>
  15. <mp-icon icon="arrow" color="#a1a1a1" size="{{8}}" mar></mp-icon>
  16. </view>
  17. <template is="line"></template>
  18. <picker bindchange="bindPickerChange" value="{{farming_index}}" range="{{farming}}" range-key="name" style="width:100%">
  19. <template is="main_item" data="{{title:'农事活动' , content:farming[farming_index].name}}"/>
  20. </picker>
  21. <template is="line"></template>
  22. <picker mode="date" value="{{date}}" bindchange="bindDateChange" style="width:100%">
  23. <template is="main_item" data="{{title:'执行时间' , content:date}}"/>
  24. </picker>
  25. <template is="line"></template>
  26. <picker bindchange="bindBaseChange" value="{{base_index}}" range="{{base}}" range-key="name" style="width:100%">
  27. <template is="main_item" data="{{title:'采集基地' , content:base[base_index].name}}"/>
  28. </picker>
  29. <template is="line"></template>
  30. <view style="display:flex;justify-content:space-between;align-items:center;width:98%;background-color:#FFFFFF;height:50px;">
  31. <text style="width:85px;margin-left:10px;font-size:10pt;">执行人</text>
  32. <view style="display:flex;justify-content:flex-start;align-items:center;width:100%;margin-left:5px;">
  33. <view style="width:100%;">
  34. <input bindinput="bindExecutor" maxlength="10" placeholder="执行人名" style="width:100%;font-size:10pt;height:30pt" value="{{executor}}"/>
  35. </view>
  36. </view>
  37. <mp-icon icon="arrow" color="#a1a1a1" size="{{8}}" mar></mp-icon>
  38. </view>
  39. <template is="line"></template>
  40. <view style="display:flex;justify-content:space-between;align-items:center;width:98%;background-color:#FFFFFF;height:50px;">
  41. <text style="width:85px;margin-left:10px;font-size:10pt;">备注说明</text>
  42. <view style="display:flex;justify-content:flex-start;align-items:center;width:100%;margin-left:5px;">
  43. <view style="width:100%;">
  44. <input class="weui-input" bindinput="bindNote" maxlength="200" placeholder="备注" style="width:100%;font-size:10pt;height:30pt;border: none;"/>
  45. </view>
  46. </view>
  47. <mp-icon icon="arrow" color="#a1a1a1" size="{{8}}" mar></mp-icon>
  48. </view>
  49. </view>
  50. <view class="page__bd">
  51. <mp-cells>
  52. <mp-cell>
  53. <mp-uploader ext-class="my-uploader" bindfail="uploadError" bindsuccess="uploadSuccess" select="{{selectFile}}" upload="{{uplaodFile}}" files="{{files}}" max-count="1" ></mp-uploader>
  54. </mp-cell>
  55. </mp-cells>
  56. </view>
  57. <view class="v-commit">
  58. <button style="width:92%;height:40pt;text-align:center;line-height:30pt" class="commit-btn" loading="{{loading}}" bindtap="submitForm">确认并提交</button>
  59. </view>
  60. </view>