from nocodb to csv

This commit is contained in:
2026-05-20 18:51:49 -04:00
parent b849b08386
commit 4da7d4e94a
10 changed files with 156 additions and 171 deletions

View File

@@ -8,7 +8,7 @@
background-color: #f9fafb;
margin: 0;
padding: 12px;
width: 120px;
width: 160px;
color: #111827;
}
@@ -50,15 +50,25 @@
#fileInput {
display: none;
}
#status {
margin-top: 8px;
min-height: 15px;
font-size: 11px;
line-height: 1.35;
color: #4b5563;
text-align: center;
word-break: break-word;
}
</style>
<title>Teams 别名管理</title>
</head>
<body>
<h3>Teams 别名管理</h3>
<button id="sync">立即同步</button>
<input id="fileInput" type="file" accept=".csv,text/csv">
<button id="import">导入 CSV</button>
<button id="export">导出</button>
<script src="env.js"></script>
<script src="utils.js"></script>
<div id="status"></div>
<script src="popup.js"></script>
</body>
</html>