Files
FreeERP.Applet/miniprogram/pages/finance/outcomeDetail/outcomeDetail.wxml

37 lines
1.9 KiB
Plaintext

<page-plugin isAuth="{{authInfo['SF_FINANCE_OUTCOME_VIEW']}}" loading="{{loading}}"
is-login="{{isLogin}}" bind:handleLogin="handleLogin">
<total-bar-plugin customStyle="flex-direction: column;">
<card-item-plugin label="单据编号" value="{{info.bill_no}}" />
<card-item-plugin label="单据日期" value="{{info.bill_date}}" />
<card-item-plugin label="往来单位" value="{{info.crm_name}}" />
<card-item-plugin label="支出账户" value="{{info.account_name}}" />
<card-item-plugin label="支出金额" value="{{info.total_amount}}" />
<card-item-plugin label="备注" value="{{info.comments}}" />
</total-bar-plugin>
<!-- <t-cell title="Excel附件" left-icon="file-excel"
custom-style="padding-left:0;padding-right:0;position: sticky;top: 0;" arrow
bind:tap="onPreview2" /> -->
<t-cell wx:if="{{files.length}}" title="附件" left-icon="file"
custom-style="padding-left:0;padding-right:0;position: sticky;top: 0;z-index:1"
bordered="{{false}}" />
<view wx:if="{{files.length}}" style="border: 1px solid #ddd;border-radius: 8rpx;padding: 8rpx;">
<block wx:for="{{files}}" wx:key="index">
<t-cell title="{{item.file_name}}" hover="{{item._file_type != 'file'}}"
arrow="{{item._file_type != 'file'}}" bind:tap="onPreview" data-index="{{index}}" />
</block>
</view>
<t-cell wx:if="{{ detail.length }}" title="支出项目明细" left-icon="article" note="{{detail.length}}条"
custom-style="padding-left:0;padding-right:0;position: sticky;top: 0;z-index:1"
bordered="{{false}}" />
<card-plugin wx:for="{{ detail }}" wx:key="detail_id" showAll="1">
<view slot="header">{{ item.finance_item_name }}</view>
<view slot="content">
<card-item-plugin label="金额" value="{{item.item_amount}}" />
<card-item-plugin label="备注" value="{{item.comments}}" />
</view>
</card-plugin>
</page-plugin>