| | |
| | | <view class="item-details"> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">合同金额(元)</text> |
| | | <text class="detail-value">{{ formattedNumber(item.invoiceAmount) }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">付款金额(元)</text> |
| | | <text class="detail-value">{{ formattedNumber(item.paymentAmount) }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">应付金额(元)</text> |
| | | <text class="detail-value highlight danger">{{ formattedNumber(item.payableAmount) }}</text> |
| | | <text class="detail-value">{{ formattedNumber(item.contractAmounts) }}</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | |
| | | const rowClickMethod = (row) => { |
| | | // 使用 uni.setStorageSync 存储供应商信息 |
| | | uni.setStorageSync('supplierId', row.supplierId); |
| | | uni.setStorageSync('supplierName', row.supplierName); |
| | | // 跳转到回款记录明细页面 |
| | | uni.navigateTo({ |
| | | url: '/pages/procurementManagement/paymentLedger/detail' |