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

8
tmp/find_rev.py Normal file
View File

@@ -0,0 +1,8 @@
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()
for i, line in enumerate(lines):
if 'rev-col--name' in line or 'rev-col {' in line or 'rev-name' in line and '{' in line:
print(f'{i+1}: {line}', end='')
sys.stdout.flush()