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.

56 lines
3.1 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}}" style="margin-top:-18rpx;">
<!-- <finish wx:if="{{childObj.id}}" type="{{type}}" detailObj="{{detailObj}}" detail="{{childObj}}" otherFiles="{{otherFiles}}"></finish> -->
<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 wx:if="{{childObj.id}}" type="{{type}}" cagesList="{{cagesList}}" nbqList="{{nbqList}}" zjMap="{{zjMap}}" detailObj="{{detail}}" supportList="{{supportList}}" converterList="{{converterList}}" componentList="{{componentList}}"></install> -->
<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>
<!-- 勘测 -->
<!-- <survey wx:if="{{childObj.id}}" entryId="{{entryId}}" childObj="{{childObj}}"></survey> -->
<view class="content">
<view class="content-list">
<view class="content-title-item">物料安装完成状态</view>
<van-checkbox style="margin-top:10rpx" value="{{ checked }}" checked-color="#0a6597" bind:change="onChange">安装已完成</van-checkbox>
</view>
<view class="content-line"></view>
<view class="content-list">
<view class="content-title-item">验收意见</view>
<input type="text" class="content-input" placeholder="请输入" model:value="{{fixConclusionSh}}" />
</view>
</view>
<!-- 空白底 -->
<view class="buttom-margin"></view>
<view class="from-submit-buttom">
<view class="from-submit-buttom-cancle" bindtap="passFn" data-type="2">不通过</view>
<view class="from-submit-buttom-confirm" bindtap="passFn" data-type="1">通过</view>
</view>
<van-dialog id="van-dialog" />