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

11
tmp/fc2.py Normal file
View File

@@ -0,0 +1,11 @@
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()
targets = ['flow-item-right {', 'flow-item-value {', 'flow-sum-right {', 'flow-sum-value {', 'coach-fin-col {', 'coach-fin-val {', 'coach-fin-bold {']
for i, line in enumerate(lines):
for t in targets:
if t in line:
print(f'{i+1}: {line}', end='')
break
sys.stdout.flush()