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.

47 lines
2.4 KiB

<!-- 项目信息 -->
<view class="content">
<!-- 用户信息 -->
<userInfo detail="{{detail}}" type='{{tenant_type}}'></userInfo>
</view>
<!-- tab切换 -->
<view class="content-tab" style="margin-top: 20rpx;">
<view class="content-tab-item {{tabIndex==0?'content-tab-item-select':''}}" bind:tap="tabChange" data-index="0">
完工信息
<view wx:if="{{tabIndex==0}}" class="content-tab-item-select-tab"></view>
</view>
<view class="content-tab-item {{tabIndex==1?'content-tab-item-select':''}}" bind:tap="tabChange" data-index="1">
安装信息
<view wx:if="{{tabIndex==1}}" class="content-tab-item-select-tab"></view>
</view>
</view>
<!-- 完工 -->
<view hidden="{{tabIndex==0 ? false : true}}">
<finish type="{{type}}" detailObj="{{detailObj}}" otherFiles="{{otherFiles}}" detail="{{detail}}" wx:if="{{childObj.id && detail.management != '04'}}"></finish>
<!-- 华融完工信息 -->
<finishHR type="{{type}}" detailObj="{{detailObj}}" otherFiles="{{otherFiles}}" productList="{{productList}}" detail="{{detail}}" wx:if="{{childObj.id && detail.management == '04'}}"></finishHR>
</view>
<!-- 安装 -->
<view hidden="{{tabIndex==1 ? false : true}}">
<install type="{{type}}" cagesList="{{cagesList}}" nbqList="{{nbqList}}" zjMap="{{zjMap}}" detailObj="{{detail}}" supportList="{{supportList}}" converterList="{{converterList}}" componentList="{{componentList}}" wx:if="{{childObj.id && detail.management != '04'}}"></install>
<!-- 华融安装信息 -->
<installHR type="{{type}}" cagesList="{{cagesList}}" nbqList="{{nbqList}}" zjMap="{{zjMap}}" detailObj="{{detail}}" supportList="{{supportList}}" converterList="{{converterList}}" componentList="{{componentList}}" productList="{{productList}}" wx:if="{{childObj.id && detail.management == '04'}}"></installHR>
</view>
<view class="content">
<view class="content-list">
<view class="content-title-item">审核意见</view>
<textarea class="content-input" style="padding-top: 4rpx; font-size: 24rpx;" placeholder="请输入审核意见" auto-height model:value="{{remarks}}" />
</view>
</view>
<!-- 空白底 -->
<view class="buttom-margin"></view>
<view class="from-submit-buttom">
<view class="from-submit-buttom-cancle" bindtap="submit" data-type="0">驳回</view>
<view class="from-submit-buttom-confirm" bindtap="submit" data-type="1">通过</view>
</view>
<van-dialog id="van-dialog" />