34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
<!--pages/meeting/meeting.wxml-->
|
|
<!-- 自定义头部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 wx:if="{{list && list.length}}">
|
|
<view class="basic-info">
|
|
<view class="container" wx:for="{{list}}" wx:key="item" bindtap="contractDetail" data-meeting="{{item}}">
|
|
<view>
|
|
<text>合同名称</text>
|
|
<text>{{item.contractName}}</text>
|
|
</view>
|
|
<view>
|
|
<text>合同金额</text>
|
|
<text>{{item.contractAmount ? item.contractAmount + '元' : ''}}</text>
|
|
</view>
|
|
<view>
|
|
<text>合同编号</text>
|
|
<text>{{item.contractNum}}</text>
|
|
</view>
|
|
<view>
|
|
<text>负责人</text>
|
|
<text>{{item.principalName}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{list.length === 0}}" class="no-data">
|
|
<text>暂无数据</text>
|
|
</view>
|