- Added frontend runtime JavaScript functions for logging, window management, and notifications. - Created Go module with dependencies for Wails and Excel processing. - Implemented main application entry point with embedded frontend assets. - Configured Wails application settings in wails.json. Co-authored-by: Copilot <copilot@github.com>
14 lines
296 B
HTML
14 lines
296 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
|
<title>数据智能匹配工具</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="./src/main.js" type="module"></script>
|
|
</body>
|
|
</html>
|
|
|