报价单编号
{{ quoteInfo.quoteNo }}
客户名称
{{ quoteInfo.customerName }}
服务内容
{{ quoteInfo.serviceDescription }}
报价日期
{{ quoteInfo.quoteDate }}
报价有效期
{{ quoteInfo.validUntil }}
状态
{{ quoteInfo.status }}
人工费用明细
| 序号 | 服务类型 | 技术等级 | 计费方式 | 数量 | 单价 | 小计 |
|---|---|---|---|---|---|---|
| {{ index + 1 }} | {{ item.serviceType }} | {{ item.techLevel }} | {{ item.billingMethod }} | {{ item.quantity }} {{ item.billingMethod === '按小时' ? '小时' : '次' }} | ¥{{ item.price }}/{{ item.billingMethod === '按小时' ? '小时' : '次' }} | ¥{{ (item.price * item.quantity).toFixed(2) }} |
零件费用明细
| 序号 | 零件名称 | 型号规格 | 数量 | 单价 | 小计 |
|---|---|---|---|---|---|
| {{ index + 1 }} | {{ item.partName }} | {{ item.specification }} | {{ item.quantity }} | ¥{{ item.price }} | ¥{{ (item.price * item.quantity).toFixed(2) }} |
费用汇总
| 人工费用小计: | ¥{{ laborSubtotal.toFixed(2) }} |
| 零件费用小计: | ¥{{ partSubtotal.toFixed(2) }} |
| 总计(含税): | ¥{{ totalAmount.toFixed(2) }} |