This commit is contained in:
Neo
2026-03-15 10:15:02 +08:00
parent 2dd217522c
commit 72bb11b34f
916 changed files with 65306 additions and 16102803 deletions

13
tmp/fix_rev4.py Normal file
View File

@@ -0,0 +1,13 @@
import sys
path = r'c:\NeoZQYY\apps\miniprogram\miniprogram\pages\board-finance\board-finance.wxss'
with open(path, 'r', encoding='utf-8') as f:
lines = f.readlines()
# Remove line 883 (index 882): duplicate text-align: left
# Remove line 886 (index 885): extra }
# After removing 882, the old 885 becomes 884
del lines[882] # removes duplicate text-align
del lines[884] # removes extra } (was 885, now 884 after first delete)
with open(path, 'w', encoding='utf-8') as f:
f.writelines(lines)
print('OK')
sys.stdout.flush()