7 lines
595 B
PowerShell
7 lines
595 B
PowerShell
$f = 'c:/NeoZQYY/apps/miniprogram/miniprogram/pages/performance-records/performance-records.ts'
|
|
$c = [System.IO.File]::ReadAllText($f, [System.Text.Encoding]::UTF8)
|
|
$c = $c.Replace(" totalHours: '0h',`r`n totalIncome: '¥0',", " totalHours: '0h',`r`n totalHoursRaw: '0h',`r`n totalIncome: '¥0',")
|
|
$c = $c.Replace(" totalHours: '59.0h',`r`n totalIncome: '¥4,720',", " totalHours: '59.0h',`r`n totalHoursRaw: '60.5h',`r`n totalIncome: '¥4,720',")
|
|
[System.IO.File]::WriteAllText($f, $c, [System.Text.Encoding]::UTF8)
|
|
Write-Host 'done'
|