| | |
| | | <el-descriptions-item label="系统编号">{{ billInfo.systemNo }}</el-descriptions-item> |
| | | <el-descriptions-item label="账单名称">{{ billInfo.billName }}</el-descriptions-item> |
| | | <el-descriptions-item v-if="type == 'receivable'" label="客户名称">{{ billInfo.customerName |
| | | }}</el-descriptions-item> |
| | | }}</el-descriptions-item> |
| | | <el-descriptions-item v-if="type == 'payable'" label="供应商名称">{{ billInfo.supplierName |
| | | }}</el-descriptions-item> |
| | | }}</el-descriptions-item> |
| | | |
| | | <el-descriptions-item label="单据数量">{{ billInfo.documentCount }}</el-descriptions-item> |
| | | <el-descriptions-item label="应结算金额"> |
| | |
| | | |
| | | <el-descriptions-item label="减免金额">{{ billInfo.discountAmount }}</el-descriptions-item> |
| | | <el-descriptions-item v-if="type == 'receivable'" label="已收金额">{{ billInfo.receivedAmount |
| | | }}</el-descriptions-item> |
| | | }}</el-descriptions-item> |
| | | <el-descriptions-item v-if="type == 'payable'" label="已付金额">{{ billInfo.receivedAmount |
| | | }}</el-descriptions-item> |
| | | }}</el-descriptions-item> |
| | | |
| | | <el-descriptions-item v-if="type == 'receivable'" label="待收金额"> |
| | | <span class="text-danger">{{ billInfo.pendingAmount }}</span> |
| | |
| | | </el-form-item> |
| | | </el-col> |
| | | <!-- 少 --> |
| | | <el-col :span="8"> |
| | | <el-form-item label="收款人"> |
| | | <el-col :span="8" v-if="['receivable', 'payable'].includes(type)"> |
| | | <el-form-item :label="type === 'receivable' ? '收款人' : '付款人'"> |
| | | <el-input v-model="formData.payee" /> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="8" v-if="type == 'payable'"> |
| | | <el-form-item label="收款后待付金额"> |
| | | <el-form-item label="付款后待付金额"> |
| | | <el-input v-model="formData.remainingPendingAmount" disabled class="remaining-input" /> |
| | | </el-form-item> |
| | | </el-col> |