Files
medical-mall/replace_user.py

26 lines
542 B
Python

import codecs
content = '''<template>
<view class="user-center-container">
<text style="font-size: 24px; color: red;">userCenter loaded!</text>
</view>
</template>
<script setup lang="uts">
console.log('[UserCenter] Component Setup Executed!')
</script>
<style scoped>
.user-center-container {
padding: 50px;
background-color: #fff;
min-height: 500px;
}
</style>
'''
with codecs.open(r'd:\\骅锋\\mall\\pages\\mall\\admin\\userCenter\\index.uvue', 'w', 'utf-8') as f:
f.write(content)
print("userCenter replaced.")