61 lines
1.9 KiB
Plaintext
61 lines
1.9 KiB
Plaintext
<!-- 自定义头部start -->
|
|
<view class="custom flex_center" style="padding-top:{{statusBarHeight}}px">
|
|
<image src="../../assets/images/back.png" bindtap="goBack"></image>
|
|
<text>合同详情</text>
|
|
</view>
|
|
<view class="empty_custom" style="padding-top:{{statusBarHeight}}px"></view><!-- 空view用来填充自定义头部的padding-top -->
|
|
<!-- 自定义头部end -->
|
|
<view class="base">
|
|
<!-- 作废的图标 -->
|
|
<image src="../../assets/images/zuofei.png" class="zuofei" wx:if="{{form.status === 6}}"></image>
|
|
<view class="basic-info">
|
|
<view class="title">
|
|
<text>基本信息</text>
|
|
</view>
|
|
<view>
|
|
<text>合同编号</text>
|
|
<text>{{form.contractNum}}</text>
|
|
</view>
|
|
<view>
|
|
<text>合同名称</text>
|
|
<text>{{form.contractName}}</text>
|
|
</view>
|
|
<view>
|
|
<text>负责人</text>
|
|
<text>{{form.principalName}}</text>
|
|
</view>
|
|
<view>
|
|
<text>签订单位</text>
|
|
<text>{{form.signedCompanyTemporaryName}}</text>
|
|
</view>
|
|
<view>
|
|
<text>签订联系人</text>
|
|
<text>{{form.signedContactsTemporaryName}}</text>
|
|
</view>
|
|
<view>
|
|
<text>合同金额</text>
|
|
<text>{{form.contractAmount ? form.contractAmount + '元' : ''}}</text>
|
|
</view>
|
|
<view>
|
|
<text>创建时间</text>
|
|
<text>{{form.createTime}}</text>
|
|
</view>
|
|
<view>
|
|
<text>关联项目</text>
|
|
<view class="ass-project">
|
|
<text wx:for="{{form.listProject}}" data-file="{{item}}" wx:key="item" bindtap="projectDetail">{{item.chargeProject}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="basic-info">
|
|
<view class="title">
|
|
<text>邮寄信息</text>
|
|
</view>
|
|
<view class="email-info" wx:if="{{form.payMailContract}}">
|
|
<text>{{form.contractNum}}由{{form.payMailContract.mailName}}于{{form.payMailContract.createTime}}邮寄,快递号:{{form.payMailContract.postNo}}</text>
|
|
<text bindtap="track">查看物流</text>
|
|
</view>
|
|
<text wx:if="{{!form.payMailContract}}" class="no-data" style="height: 50px">暂无邮寄记录!</text>
|
|
</view>
|
|
</view>
|