zhangwencui
11 小时以前 e22962bcf244a44dc5d097e09c520f5a40abc0a8
src/pages/sales/receiptPayment/index.vue
@@ -54,8 +54,8 @@
              <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>
@@ -66,24 +66,16 @@
              <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>
          <!-- 操作按钮 -->
@@ -157,7 +149,7 @@
    if (!type) {
      return "info";
    }
    if (type == "未完成回款") {
    if (type == "未完成付款") {
      return "warning";
    } else {
      return "success";