93 lines
3.2 KiB
Plaintext
93 lines
3.2 KiB
Plaintext
<!-- 施工日志 -->
|
|
<!-- <view class="header_title">
|
|
<view class="header_title_row">
|
|
<van-row>
|
|
<van-col span="3">
|
|
<view class="header_img" bindtap="showPopup"><image src="/images/core.png"></image></view>
|
|
</van-col>
|
|
<van-col span="4">
|
|
<view class="header_img" bindtap="goGCLB">
|
|
<image src="/images/left.png"></image>
|
|
<text class="header_fh">返回</text>
|
|
</view>
|
|
</van-col>
|
|
<van-col span="10">
|
|
<view class="header_name">施工日志</view>
|
|
</van-col>
|
|
</van-row>
|
|
</view>
|
|
</view> -->
|
|
|
|
<!-- 账号信息 -->
|
|
<!-- <van-popup show="{{ show }}" position="left" custom-style="width: 70%;height:100%;background:#191d28" bind:close="onClose" >
|
|
<view class="left_max">
|
|
<van-row class="demo clearfix">
|
|
<van-col span="10">
|
|
<view class="left_head"><image src="https://xiangguan.sxyanzhu.com/statics/static/img/9015e824c5004e629049c4f72967cfdc.png"></image></view>
|
|
</van-col>
|
|
<van-col span="14">
|
|
<view class="left_info">
|
|
<view class="left_info_name">{{userName}}</view>
|
|
<view class="left_info_name">{{loginName}}</view>
|
|
</view>
|
|
</van-col>
|
|
</van-row>
|
|
</view>
|
|
</van-popup> -->
|
|
|
|
<view class="construction" style="padding-top: 0;">
|
|
<!-- 头部模块 -->
|
|
<view class="max_content" style="width:110%;padding: 20rpx 0 26rpx;">
|
|
<project-select style="width:100rpx" init="{{initData}}" bindchange="onProjectSelect"></project-select>
|
|
</view>
|
|
<!-- 施工日志列表 -->
|
|
<!-- <view class="logList">
|
|
<view class="eharts_title" >
|
|
施工日志列表
|
|
</view>
|
|
<view class="right-title">
|
|
<pz-screen-training-index columns="{{buildList}}" bindscreen="screenCondition" title="楼号" title1="楼层层数"></pz-screen-training-index>
|
|
</view>
|
|
</view> -->
|
|
<!-- 施工日志内容 -->
|
|
<view class="log-content" wx:for="{{logList}}" wx:key="index" bindtap="checkDetails" data-item="{{item}}">
|
|
<!-- 上面部分 -->
|
|
<view class="log-content-top">
|
|
<view style="padding: 6rpx 16rpx;border-bottom: 1px solid #3f498e;color: #697ab3;">
|
|
{{index<9?'0'+(index+1):index+1}}
|
|
</view>
|
|
<view style="padding: 6rpx 16rpx;border-bottom: 1px solid #27327a;width: 100%;">
|
|
{{item.buildingName}}/ {{item.floorName}}
|
|
</view>
|
|
</view>
|
|
<!-- 下面部分 -->
|
|
<view class="log-content-bottom">
|
|
<view class="log-contentStyle">
|
|
填报日期 : <view class="titleColor">
|
|
{{item.fillTime}}
|
|
</view>
|
|
</view>
|
|
<view class="log-contentStyle" style="margin: 36rpx 0;">
|
|
填报人 :
|
|
<view style="color: #8ca2eb;font-weight: bold;" class="titleColor">
|
|
{{item.createUserName}}
|
|
</view>
|
|
</view>
|
|
<view class="log-contentStyle">
|
|
创建时间 :
|
|
<view style="color: #8ca2eb;" class="titleColor">
|
|
{{item.createTime}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 新增模块 -->
|
|
<view class="button-add" bindtap="goAddPage" style="bottom: 24rpx;right: 38rpx;">
|
|
<view style="width: 38rpx;height: 38rpx;">
|
|
<image src="https://xiangguan.sxyanzhu.com/statics/static/img/WEB_73DDBFC7781A41C082FC10AB5F530472.png" mode=""/>
|
|
</view>
|
|
<view style="font-size: 26rpx;color: #748bca;">
|
|
新增
|
|
</view>
|
|
</view> |