| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <view class="intr">
- <view class="num">
- {{detail.billno}}
- </view>
- <view class="exp">
- 红蓝字:{{detail.rb ? '蓝' : '红'}}字
- </view>
- <view class="exp">
- 单据日期:{{detail.billdate}}
- </view>
- <view class="exp">
- 备注:{{detail.remarks || ' --'}}
- </view>
- <view class="exp">
- 是否收货:{{detail.isreceiver ?'已收货':'未收货'}}
- </view>
- <view class="exp">
- 收货地址:{{detail.invoice_address || '--'}}
- </view>
- <view class="exp">
- 开票信息:{{detail.invoice_enterprisename || '--'}}
- </view>
- </view>
- <view class="amounts">
- <view>
- <view class="label">应收金额</view>
- <view class="price">{{detail.receivableamount}}</view>
- </view>
- <view>
- <view class="label">支付金额</view>
- <view class="price">{{detail.payamount}}</view>
- </view>
- <view>
- <view class="label">优惠金额</view>
- <view class="price">{{detail.paydiscountamount}}</view>
- </view>
- <view>
- <view class="label">优惠余额</view>
- <view class="price">{{detail.discountamount_xjzh}}</view>
- </view>
- </view>
- <Yl_FunTabs list='{{tabsList}}' active='{{tabsActive}}' bind:onChenge="tabsChange">
- <product slot='产品明细' id='Product' />
- <record slot='操作记录' id='record' ownertable='st_stockbill' ownerid='{{st_stockbillid}}' />
- </Yl_FunTabs>
- <view class="footer">
- <van-button custom-class='but' bindtap="ConfirmReceiptOfGoods">{{detail.isreceiver == 0 ? '收货确认' : '收货反确认'}}</van-button>
- </view>
|