结算申请

This commit is contained in:
bb_pan 2025-12-17 11:07:03 +08:00
parent 6e405ffd0a
commit afc5f4d828
3 changed files with 7 additions and 7 deletions

View File

@ -76,7 +76,7 @@
<div class="tabelAllTopFour"> <div class="tabelAllTopFour">
<div class="costTopOne">备注</div> <div class="costTopOne">备注</div>
<div class="costRightTwo"> <div class="costRightTwo">
{{ '此费用仅为在机具设备分公司发生费用,未计从项目部领用机具费用。' }} {{ '此费用仅为在机具(物流)分公司发生费用,未计从项目部领用机具费用。' }}
</div> </div>
</div> </div>
<el-table :data="leaseList"> <el-table :data="leaseList">

View File

@ -227,7 +227,7 @@
<div class="tabelColumn" style="border: 1px solid #9c9c9c"> <div class="tabelColumn" style="border: 1px solid #9c9c9c">
<div class="columnLabel" style="width: 20%">备注</div> <div class="columnLabel" style="width: 20%">备注</div>
<div class="columnContent" style="width: 80%"> <div class="columnContent" style="width: 80%">
此费用仅为在机具设备分公司发生费用未计从项目部领用机具费用 此费用仅为在机具物流分公司发生费用未计从项目部领用机具费用
</div> </div>
</div> </div>
@ -809,7 +809,7 @@ export default {
worksheet.mergeCells('A13:D13') worksheet.mergeCells('A13:D13')
// //
const noteHeaderRow = worksheet.addRow(['备注: 此费用仅为在机具设备分公司发生费用,未计从项目部领用机具费用。']) const noteHeaderRow = worksheet.addRow(['备注: 此费用仅为在机具(物流)分公司发生费用,未计从项目部领用机具费用。'])
noteHeaderRow.font = { bold: true } noteHeaderRow.font = { bold: true }
noteHeaderRow.eachCell((cell) => { noteHeaderRow.eachCell((cell) => {
cell.border = borderStyle cell.border = borderStyle
@ -1146,7 +1146,7 @@ export default {
children: [ children: [
new Paragraph({ new Paragraph({
alignment: AlignmentType.CENTER, alignment: AlignmentType.CENTER,
text: '此费用仅为在机具设备分公司发生费用,未计从项目部领用机具费用。' text: '此费用仅为在机具(物流)分公司发生费用,未计从项目部领用机具费用。'
}) })
] ]
}) })

View File

@ -194,7 +194,7 @@
<div class="tabelColumn" style="border: 1px solid #9c9c9c"> <div class="tabelColumn" style="border: 1px solid #9c9c9c">
<div class="columnLabel" style="width: 20%">备注</div> <div class="columnLabel" style="width: 20%">备注</div>
<div class="columnContent" style="width: 80%"> <div class="columnContent" style="width: 80%">
此费用仅为在机具设备分公司发生费用未计从项目部领用机具费用 此费用仅为在机具物流分公司发生费用未计从项目部领用机具费用
</div> </div>
</div> </div>
@ -620,7 +620,7 @@ export default {
// ======= ======= // ======= =======
const remarkRow = sheet.addRow([ const remarkRow = sheet.addRow([
'备注:', '备注:',
'此费用仅为在机具设备分公司发生费用,未计从项目部领用机具费用。', '此费用仅为在机具(物流)分公司发生费用,未计从项目部领用机具费用。',
'', '',
'' ''
]) ])
@ -937,7 +937,7 @@ export default {
children: [ children: [
new Paragraph({ new Paragraph({
alignment: AlignmentType.CENTER, alignment: AlignmentType.CENTER,
text: '此费用仅为在机具设备分公司发生费用,未计从项目部领用机具费用。' text: '此费用仅为在机具(物流)分公司发生费用,未计从项目部领用机具费用。'
}) })
] ]
}) })