| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <!--pages/buyer/buyer.wxml-->
- <!--
- <view class='viewBox'>
- <!--地图
- <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 class="viewTop">
- <view class='search'>
- <view class='searchItem'>
- <input placeholder='搜索' />
- <view style="width:60rpx;margin-left:30rpx;" >
- <image src='/images/search.png' style="width:40rpx;height:40rpx;padding-top: 7px;"></image>
- </view>
- </view>
-
- </view>
- </view>
- </view>
- -->
- <view class="org-block">
- <view class="org-list-box">
- <scroll-view scroll-y="true" class="sv">
-
- <block wx:for="{{projectList}}" wx:key="value">
- <view class="weui-cells weui-cells_after-title">
- <view class="listImage">
- <image class="listImage" src="/images/project.png"></image>
- </view>
- <view class="time-select">
- <!-- <label class="time-select" wx:for="{{projectList}}" wx:key="value"> -->
-
- <view style=" margin-top: 0px;margin-left: 8px;margin-right:8px;" class="proTextbox">
- <text style="margin:0rpx;color:#426666;font-size:1.0rem;" class="proText">{{item.title}}</text>
- </view>
- <view class="rtuCount" style=" margin-top: 0px;margin-left: 8px;margin-right:8px;">
- <view class="rtuNum">
- <text style="color:#FD7400"> {{item.rtuNum}}</text><text>个站点</text>
- </view>
- <view class="warningRtuNum">
- <text style="color:#FD7400"> {{item.warningRtuNum}}</text><text>个站点预警</text>
- </view>
- </view>
- </view>
- <view class="button">
- <view class="button-check">
- <button class="check-btn" data-projectid="{{item.projectId}}" bindtap="checkProgHandle">
- <text class="text"
- style="font-size:0.6rem;display:flex;justify-content:center;align-items:center;height:22px;color:white">查看</text>
- </button>
- </view>
- <!-- <view class="button-sub" bindtap="reportInputHandle">
- <button class="mini-btn">
- <text class="text"
- style="font-size:0.6rem;display:flex;justify-content:center;align-items:center;height:22px;">上报</text>
- </button>
- </view> -->
- </view>
- <!-- </label> -->
- </view>
- </block>
- </scroll-view>
- </view>
- </view>
- <!-- <view class="orgName">
- <view style="height:30px;padding-left: 20rpx;">
- <text>当前项目</text>
- </view>
- <view style="height:30px;padding-left: 20rpx;" bindtap="orgSelectEvent">
- <text style="color: darkcyan;">{{orgName}}</text>
- </view>
- </view>
- <view style="height:20px;padding-left: 20rpx;">
- <button class="mini-btn" type="default" size="mini" bindtap="takeProjectPhoto">上传照片</button>
- </view>
- <view style="padding-left: 20rpx;margin-top:5px">
- <image src='/images/w1.jpg' style="height:120rpx" mode="aspectFit"></image>
- </view>
- <view class=' desc'>
- <view class='inputBox'>
- <input class='input' placeholder='工作说明情况' type='text' bindinput='reportInputHandle' value='{{reportDesc}}' focus='{{reportInputFocus}}'></input>
- </view>
- <view class='reportButton'>
- <image class='reportIcon' bindtap='reportMyLocation' src="../../images/launch.png" mode="widthFix" />
- <button size='mini' bindtap='reportMyLocation'>提交</button>
- </view>
- </view>
- </view>-->
- <!-- <modal hidden="{{hiddenmodalput}}" title="HI,起个名字吧!" confirm-text="OK" cancel-text="CANCEL" bindcancel="nickCancelHandle" bindconfirm="nickConfirmHandle">
- <input type='text' placeholder="请输入昵称" auto-focus bindinput="bindNickInputHandle" />
- </modal> -->
|