| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <view class="btns_select">
- <picker class="btns_item" range="{{array}}" range-key="sectionName" bindchange="selectLd">
- <view class="outtxt">{{ array[index].sectionName ? array[index].sectionName : '请选择路段' }}</view>
- </picker>
- <picker class="btns_item " wx:if="{{flag}}" range="{{yhdwList}}" range-key="fDeptname" bindchange="selectYhdw">
- <view class="outtxt">
- {{ yhdwList[index1].fDeptname ? yhdwList[index1].fDeptname : '请选择养护单位' }}
- </view>
- </picker>
- <view class="btns_item " bind:tap="showHuatan">
- <view class="outtxt">{{ huatanList[huatanindex].fAttractionsName ? "已选择" : '请选择花卉景观' }}</view>
- </view>
- </view>
- <view class="map_box">
- <map id="mao_huatan" class="2" longitude="{{longitude}}" latitude="{{latitude}}" scale="16" show-location bindregionchange="" bindtap="" bindupdated="" show-compass='{{false}}'></map>
- </view>
- <view class="upload">
- <view class="upload_btn" bind:tap="showDailog">巡查拍照</view>
- <view class="upload_btn" bind:tap="endXC">结束巡查</view>
- <!-- 选择 路段 养护单位 -->
- </view>
- <!-- 弹框 -->
- <view class="dailog" wx:if="{{ imgDailog }}">
- <view class="dailog_con">
- <view class="close" bindtap="closeDailog">关闭</view>
- <view class="upfiles">
- <view class="upfiles_box">
- <view class="upfiles_box_clear" wx:for="{{formFileurl}}" wx:key="index">
- <icon class='ui_uploader_item_icon' bindtap='clearImg' data-index="{{index}}" type="clear" size="20" color="red" />
- <image bindtap='showImg' data-index="{{index}}" class="weui-uploader__img" src="{{item.fileUrl}}"></image>
- </view>
- <image wx:if="{{ formFileurl.length < 5 }}" src="../../../images/icon/icon_tj.png" bindtap="uploader"></image>
- </view>
- </view>
- <view style="padding:0 20rpx">
- <radio-group bindchange="radiochange">
- <radio value="0" checked="{{true}}"></radio>
- 没有问题
- <radio value="1"></radio>
- 发现问题
- </radio-group>
- </view>
- <view style="padding:0 20rpx" wx:if="{{isExist==1}}">
- <picker class="" mode="selector" range="{{workTypeList}}" range-key="fName" bindchange="changeType">
- <view>选择问题类型 : {{ ' ' + ' ' + workTypeList[index2].fName }}</view>
- </picker>
- </view>
- <view class="time_choose te_time_choose">
- <view class="title" style="padding:0 20rpx;">备注:</view>
- <view class="area_box">
- <textarea bindinput="input" cursor-spacing="150" maxlength="150" placeholder="请简单描述" placeholder-style="color:rgba(153,153,153,1);font-size:14px;">
- <!-- <text class="currentWordNumber">{{currentNoteLen|0}}/{{noteMaxLen}}</text> -->
- </textarea>
- </view>
- </view>
- <view class="btnImg">
- <button class="btn" size="default" catchtap="UploadP">确定</button>
- </view>
- </view>
- </view>
- <!-- 弹框 花坛容器 -->
- <view class="huatanbox" wx:if="{{huatanFlag}}">
- <!-- 关闭按钮 -->
- <view class="close-hantan" catch:tap="hidehuatan">确定</view>
- <view class="close-hantan1" catch:tap="closehuatan">关闭</view>
- <view wx:for="{{huatanList}}" class="item-huatan mt60 {{ index == huatanindex ? 'green' : '' }} " wx:key="*this" bind:tap="togglehuatan" data-index="{{index}}">
- <view>景点名称 : {{ item.fAttractionsName }}</view>
- <view>景点地点 : {{ item.fAttractionsPlace }}</view>
- </view>
- </view>
|