You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.8 KiB
48 lines
2.8 KiB
<!--pages/appRecord/appRecord.wxml-->
|
|
<view class="record-box" wx:if="{{listData.length>0}}">
|
|
<view class="line-bg"></view>
|
|
<view class="list-box">
|
|
<view class="record-list" wx:for="{{listData}}">
|
|
<view class="r-left">
|
|
<text wx:if="{{item.type =='88' || item.type =='89'}}">档案审核</text>
|
|
<text wx:if="{{item.type =='85'}}">提交踏勘</text>
|
|
<text wx:if="{{item.type =='87'}}">提交档案</text>
|
|
<text wx:if="{{item.type =='90' || item.type =='11'}}">设计审核</text>
|
|
<text wx:if="{{item.type =='6'}}">提交完工</text>
|
|
<text wx:if="{{item.type =='65'}}">提交并网</text>
|
|
<text wx:if="{{item.type =='661' || item.type =='662'}}">并网验收</text>
|
|
<text wx:if="{{item.type =='62' || item.type =='63'}}">安装验收</text>
|
|
<text wx:if="{{item.type =='91' || item.type =='92'}}">设计自审</text>
|
|
<text wx:if="{{item.type =='93' || item.type =='94'}}">安装自审</text>
|
|
<text wx:if="{{item.type =='511'}}">设计暂存</text>
|
|
<text wx:if="{{item.type =='512'}}">提交自审</text>
|
|
<text wx:if="{{item.type =='513'}}">驳回勘测</text>
|
|
<text wx:if="{{item.type =='514'}}">提交设计</text>
|
|
|
|
<text wx:if="{{item.type =='51' || item.type =='52'}}">进件审核</text>
|
|
<text wx:if="{{item.type =='502'|| item.type =='519'}}">进件审核</text>
|
|
<text wx:if="{{item.type =='506' || item.type =='507'}}">资方预审</text>
|
|
<text wx:if="{{item.type =='515' || item.type =='516'}}">投放审核</text>
|
|
<text wx:if="{{item.type =='518'}}">建档补充</text>
|
|
|
|
<text wx:if="{{item.type =='508'}}">提交变更</text>
|
|
<text wx:if="{{item.type =='505' || item.type =='510'}}">变更审核</text>
|
|
<text wx:if="{{item.type =='509'}}">取消变更</text>
|
|
</view>
|
|
<view class="r-right">
|
|
<view class="right-top">
|
|
<view class="name-date">
|
|
<view>{{item.operator}}</view>
|
|
<view>{{item.operateTime}}</view>
|
|
</view>
|
|
<!-- 通过按钮 -->
|
|
<image src="../../img/shtg.png" class="status-img" wx:if="{{item.type =='88' || item.type =='90' || item.type =='91' || item.type =='93' || item.type =='63' || item.type =='661'|| item.type =='51'|| item.type =='502' || item.type =='505'|| item.type =='506'|| item.type =='516'}}" />
|
|
<!-- 驳回按钮 -->
|
|
<image src="../../img/shbh.png" class="status-img" wx:if="{{item.type =='89' || item.type =='92' || item.type =='94' || item.type =='11' || item.type =='62' || item.type =='662'|| item.type =='52'|| item.type =='507'||item.type =='510'|| item.type =='515'|| item.type =='519'}}" />
|
|
</view>
|
|
<view class="r-content">{{item.content}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="no-msg" wx:else>暂无数据</view> |