| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <view class='mapBox'>
- <!--地图-->
- <map id="map" class='mapBox' longitude="{{longitude}}" latitude="{{latitude}}" bindtap="touchMap" scale="{{scale}}" markers="{{markers}}" bindmarkertap="markertapHandle" bindregionchange="regionchange" include-points="{{includepoints}}" show-location>
- <block wx:if="{{show}}">
- <cover-view class="controls">
- <cover-view class='title'>
- <cover-image class='headIcon' src='{{headUrl}}' mode='aspectFill'></cover-image>
- <cover-view class='name'>{{popBoxTitle}}</cover-view>
- <cover-view class='look' data-locationid='{{locationid}}' bindtap='openTalkBoxHandle'>点击查看</cover-view>
- </cover-view>
- <cover-view class='desc'>{{popBoxDesc}}</cover-view>
- </cover-view>
- </block>
- <cover-view class="location-info">
- <cover-view class="location-info-text">天气: {{weatherInfo}}</cover-view>
- <cover-view class="location-info-text">经度: {{longitude}} 纬度: {{latitude}}</cover-view>
- <cover-view class="location-info-text">地址: {{location}}</cover-view>
- </cover-view>
- </map>
- </view>
- <view class="publishContainer">
- <!-- <view style="margin-left:20rpx;margin-right:20rpx;">
- <text class="weather-text-title">天气:</text>
- </view>
- <view style="margin-left:20rpx;margin-right:20rpx;">
- <text class="weather-text">天气 {{weather}}</text>
- </view>
- <view style="margin-left:20rpx;margin-right:20rpx;">
- <text class="location-text">经度:{{lat}} 纬度:{{lng}}</text>
- </view>
- <view style="margin-left:20rpx;margin-right:20rpx;">
- <text class="weather-text-title">地址(可修改):</text>
- </view>
- <view style="margin-left:20rpx;margin-right:20rpx;">
- <input class='address-text' placeholder='请录入地址' type='text' bindinput="bindAddressKeyInput" value='{{address}}'></input>
- </view>-->
- <view style="margin-left:20rpx;margin-right:20rpx;">
- <text class="weather-text-title">项目记录:</text>
- </view>
- <view class='descInputBox'>
- <!-- <textarea class="textarea" value="{{value}}" placeholder="{{placeholder}}" placeholder-class="placeholder" maxlength="300" auto-focus="true" auto-height="false" show-confirm-bar="true" bindinput="bindKeyInput"></textarea> -->
- <textarea class="textarea" value="{{inputValue}}" placeholder="{{placeholder}}" placeholder-class="placeholder" bindinput="bindKeyInput"></textarea>
- </view>
- <view class='photoBox'>
- <view class='scroll-list'>
- <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
- <image class='item-img' src='{{photo.path}}' bindtap="{{photo.type==0?'takePhoto':'editPhoto'}}" mode='aspectFill'></image>
- </block>
- </view>
- </view>
- <view class='buttonBox'>
- <button type="primary" size="default" bindtap="sendPhoto">提交</button>
- </view>
- </view>
|