| | |
| | | <text class="detail-value">{{ item.customerName }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">客户合同号</text> |
| | | <text class="detail-value">{{ item.customerContractNo }}</text> |
| | | <text class="detail-label">销售合同号</text> |
| | | <text class="detail-value">{{ item.salesContractNo }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">项目名称</text> |
| | |
| | | <text class="detail-value">{{ item.productCategory }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">发票号</text> |
| | | <text class="detail-value">{{ item.invoiceNo || '-' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">发票金额(元)</text> |
| | | <text class="detail-value highlight">{{ formatNumber(item.invoiceTotal) }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">税率(%)</text> |
| | | <text class="detail-value">{{ item.taxRate }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">回款金额(元)</text> |
| | | <text class="detail-value highlight">{{ formatNumber(item.receiptPaymentAmountTotal) }}</text> |
| | | <text class="detail-value highlight">{{ formatNumber(item.invoiceTotal) }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">待回款金额(元)</text> |
| | | <text class="detail-value danger">{{ formatNumber(item.noReceiptAmount) }}</text> |
| | | <text class="detail-value danger">{{ formatNumber(item.pendingInvoiceTotal) }}</text> |
| | | </view> |
| | | </view> |
| | | <!-- 操作按钮 --> |
| | |
| | | if (!type) { |
| | | return "info"; |
| | | } |
| | | if (type == "未完成回款") { |
| | | if (type == "未完成付款") { |
| | | return "warning"; |
| | | } else { |
| | | return "success"; |