Açıklama Yok

inspectionHuatan.wxml 3.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <view class="btns_select">
  2. <picker class="btns_item" range="{{array}}" range-key="sectionName" bindchange="selectLd">
  3. <view class="outtxt">{{ array[index].sectionName ? array[index].sectionName : '请选择路段' }}</view>
  4. </picker>
  5. <picker class="btns_item " wx:if="{{flag}}" range="{{yhdwList}}" range-key="fDeptname" bindchange="selectYhdw">
  6. <view class="outtxt">
  7. {{ yhdwList[index1].fDeptname ? yhdwList[index1].fDeptname : '请选择养护单位' }}
  8. </view>
  9. </picker>
  10. <view class="btns_item " bind:tap="showHuatan">
  11. <view class="outtxt">{{ huatanList[huatanindex].fAttractionsName ? "已选择" : '请选择花卉景观' }}</view>
  12. </view>
  13. </view>
  14. <view class="map_box">
  15. <map id="mao_huatan" class="2" longitude="{{longitude}}" latitude="{{latitude}}" scale="16" show-location bindregionchange="" bindtap="" bindupdated="" show-compass='{{false}}'></map>
  16. </view>
  17. <view class="upload">
  18. <view class="upload_btn" bind:tap="showDailog">巡查拍照</view>
  19. <view class="upload_btn" bind:tap="endXC">结束巡查</view>
  20. <!-- 选择 路段 养护单位 -->
  21. </view>
  22. <!-- 弹框 -->
  23. <view class="dailog" wx:if="{{ imgDailog }}">
  24. <view class="dailog_con">
  25. <view class="close" bindtap="closeDailog">关闭</view>
  26. <view class="upfiles">
  27. <view class="upfiles_box">
  28. <view class="upfiles_box_clear" wx:for="{{formFileurl}}" wx:key="index">
  29. <icon class='ui_uploader_item_icon' bindtap='clearImg' data-index="{{index}}" type="clear" size="20" color="red" />
  30. <image bindtap='showImg' data-index="{{index}}" class="weui-uploader__img" src="{{item.fileUrl}}"></image>
  31. </view>
  32. <image wx:if="{{ formFileurl.length < 5 }}" src="../../../images/icon/icon_tj.png" bindtap="uploader"></image>
  33. </view>
  34. </view>
  35. <view style="padding:0 20rpx">
  36. <radio-group bindchange="radiochange">
  37. <radio value="0" checked="{{true}}"></radio>
  38. 没有问题
  39. <radio value="1"></radio>
  40. 发现问题
  41. </radio-group>
  42. </view>
  43. <view style="padding:0 20rpx" wx:if="{{isExist==1}}">
  44. <picker class="" mode="selector" range="{{workTypeList}}" range-key="fName" bindchange="changeType">
  45. <view>选择问题类型 : {{ ' ' + ' ' + workTypeList[index2].fName }}</view>
  46. </picker>
  47. </view>
  48. <view class="time_choose te_time_choose">
  49. <view class="title" style="padding:0 20rpx;">备注:</view>
  50. <view class="area_box">
  51. <textarea bindinput="input" cursor-spacing="150" maxlength="150" placeholder="请简单描述" placeholder-style="color:rgba(153,153,153,1);font-size:14px;">
  52. <!-- <text class="currentWordNumber">{{currentNoteLen|0}}/{{noteMaxLen}}</text> -->
  53. </textarea>
  54. </view>
  55. </view>
  56. <view class="btnImg">
  57. <button class="btn" size="default" catchtap="UploadP">确定</button>
  58. </view>
  59. </view>
  60. </view>
  61. <!-- 弹框 花坛容器 -->
  62. <view class="huatanbox" wx:if="{{huatanFlag}}">
  63. <!-- 关闭按钮 -->
  64. <view class="close-hantan" catch:tap="hidehuatan">确定</view>
  65. <view class="close-hantan1" catch:tap="closehuatan">关闭</view>
  66. <view wx:for="{{huatanList}}" class="item-huatan mt60 {{ index == huatanindex ? 'green' : '' }} " wx:key="*this" bind:tap="togglehuatan" data-index="{{index}}">
  67. <view>景点名称 : {{ item.fAttractionsName }}</view>
  68. <view>景点地点 : {{ item.fAttractionsPlace }}</view>
  69. </view>
  70. </view>