11 lines
442 B
Python
11 lines
442 B
Python
import codecs
|
|
file_path = r'd:\\骅锋\\mall\\layouts\\admin\\components\\AdminHeader.uvue'
|
|
with codecs.open(file_path, 'r', 'utf-8') as f:
|
|
text = f.read()
|
|
|
|
text = text.replace('@click="toggleUserMenu"', '@click="goToUserCenter"')
|
|
text = text.replace('function goToUserCenter() {', 'function goToUserCenter() {\n console.log("[AdminHeader] goToUserCenter called");')
|
|
|
|
with codecs.open(file_path, 'w', 'utf-8') as f:
|
|
f.write(text)
|