客户信息
客户姓名
{{ order.customerName || '散客' }}
联系电话
{{ order.customerPhone }}
商品明细
{{ item.productName }}
{{ item.productSpec || '-' }}
{{ item.length || '-' }}x{{ item.width || '-' }}
{{ calcArea(item) }}
{{ item.quantity }}
¥{{ item.price }}
¥{{ (item.price * item.quantity).toFixed(0) }}
金额信息
原价合计
¥{{ order.totalAmount }}
优惠金额
-¥{{ order.discountAmount }}
实付金额
¥{{ order.actualAmount }}
支付方式
{{ getPaymentMethod(order.paymentMethod) }}
备注
{{ order.remark }}
操作信息
操作员
{{ order.operatorName }}