添加页面, 组件, 图标
This commit is contained in:
@@ -25,30 +25,27 @@
|
||||
<!-- <sort-plugin options="{{sort}}" bind:ok="onSort" value="{{params.order}}" slot="right" /> -->
|
||||
</count-plugin>
|
||||
|
||||
<t-empty wx:if="{{list.length == 0}}" icon="info-circle-filled" description="暂无数据"
|
||||
style="margin-bottom: 24rpx;" />
|
||||
<block wx:for="{{ list }}" wx:key="info_process_id">
|
||||
<card-plugin>
|
||||
<view slot="header">{{ item.rel_bill_no }}</view>
|
||||
<view slot="content">
|
||||
<card-item-plugin label="业务类型" value="{{item.type}}" />
|
||||
<card-item-plugin label="账户" value="{{item.account_name}}" />
|
||||
<card-item-plugin label="收支类型" value="{{item.pay_type}}" />
|
||||
<card-item-plugin label="变更金额" value="{{item.amount}}" />
|
||||
<card-item-plugin label="变更前" value="{{item.before}}" />
|
||||
<card-item-plugin label="剩余金额" value="{{item.after}}" />
|
||||
<card-item-plugin label="操作员">
|
||||
<view slot="value">
|
||||
{{item.creator_name}}
|
||||
<text wx:if="{{item.creator_nick_name}}">({{item.creator_nick_name}})</text>
|
||||
</view>
|
||||
</card-item-plugin>
|
||||
<card-item-plugin label="备注" value="{{item.comments}}" />
|
||||
<card-item-plugin label="交易时间" value="{{item.pay_date}}" />
|
||||
<card-item-plugin label="创建日期" value="{{item.create_date}}" />
|
||||
</view>
|
||||
</card-plugin>
|
||||
</block>
|
||||
<empty-plugin wx:if="{{list.length == 0}}" />
|
||||
<card-plugin wx:for="{{ list }}" wx:key="account_log_id">
|
||||
<view slot="header">{{ item.rel_bill_no }}</view>
|
||||
<view slot="content">
|
||||
<card-item-plugin label="业务类型" value="{{item.type}}" />
|
||||
<card-item-plugin label="账户" value="{{item.account_name}}" />
|
||||
<card-item-plugin label="收支类型" value="{{item.pay_type}}" />
|
||||
<card-item-plugin label="变更金额" value="{{item.amount}}" />
|
||||
<card-item-plugin label="变更前" value="{{item.before}}" />
|
||||
<card-item-plugin label="剩余金额" value="{{item.after}}" />
|
||||
<card-item-plugin label="操作员">
|
||||
<view slot="value">
|
||||
{{item.creator_name}}
|
||||
<text wx:if="{{item.creator_nick_name}}">({{item.creator_nick_name}})</text>
|
||||
</view>
|
||||
</card-item-plugin>
|
||||
<card-item-plugin label="备注" value="{{item.comments}}" />
|
||||
<card-item-plugin label="交易时间" value="{{item.pay_date}}" />
|
||||
<card-item-plugin label="创建日期" value="{{item.create_date}}" />
|
||||
</view>
|
||||
</card-plugin>
|
||||
<pagination-plugin curr_page="{{params.curr_page}}" page_count="{{params.page_count}}"
|
||||
total="{{count}}" bind:change="paginationChange" />
|
||||
</page-plugin>
|
||||
Reference in New Issue
Block a user