refactor: 前端文件夹名称调整
@@ -3,7 +3,7 @@ FROM m.daocloud.io/docker.io/node:18-bookworm-slim as fe-builder
|
|||||||
|
|
||||||
WORKDIR /mayfly
|
WORKDIR /mayfly
|
||||||
|
|
||||||
COPY mayfly_go_web .
|
COPY frontend .
|
||||||
|
|
||||||
RUN yarn config set registry 'https://registry.npmmirror.com' && \
|
RUN yarn config set registry 'https://registry.npmmirror.com' && \
|
||||||
yarn install && \
|
yarn install && \
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ project_path=`pwd`
|
|||||||
# 构建后的二进制执行文件名
|
# 构建后的二进制执行文件名
|
||||||
exec_file_name="mayfly-go"
|
exec_file_name="mayfly-go"
|
||||||
# web项目目录
|
# web项目目录
|
||||||
web_folder="${project_path}/mayfly_go_web"
|
web_folder="${project_path}/frontend"
|
||||||
# server目录
|
# server目录
|
||||||
server_folder="${project_path}/server"
|
server_folder="${project_path}/server"
|
||||||
|
|
||||||
|
|||||||
21
frontend/index.html
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh_CN">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta name="keywords" content="mayfly-go" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
|
||||||
|
<link type="favicon" rel="shortcut icon" href="favicon.ico" />
|
||||||
|
<title>mayfly-go</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="application/javascript" src="./config.js"></script>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
71
frontend/package.json
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"name": "mayfly-go-frontend",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vite build",
|
||||||
|
"preview": "vite preview",
|
||||||
|
"build-preview": "npm run build && npm run preview",
|
||||||
|
"lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
|
"@vueuse/core": "^11.1.0",
|
||||||
|
"asciinema-player": "^3.8.1",
|
||||||
|
"axios": "^1.6.2",
|
||||||
|
"clipboard": "^2.0.11",
|
||||||
|
"cropperjs": "^1.6.1",
|
||||||
|
"crypto-js": "^4.2.0",
|
||||||
|
"dayjs": "^1.11.13",
|
||||||
|
"echarts": "^5.5.1",
|
||||||
|
"element-plus": "^2.8.6",
|
||||||
|
"js-base64": "^3.7.7",
|
||||||
|
"jsencrypt": "^3.3.2",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
|
"mitt": "^3.0.1",
|
||||||
|
"monaco-editor": "^0.52.0",
|
||||||
|
"monaco-sql-languages": "^0.12.2",
|
||||||
|
"monaco-themes": "^0.4.4",
|
||||||
|
"nprogress": "^0.2.0",
|
||||||
|
"pinia": "^2.2.5",
|
||||||
|
"qrcode.vue": "^3.5.1",
|
||||||
|
"screenfull": "^6.0.2",
|
||||||
|
"sortablejs": "^1.15.3",
|
||||||
|
"splitpanes": "^3.1.5",
|
||||||
|
"sql-formatter": "^15.4.5",
|
||||||
|
"trzsz": "^1.1.5",
|
||||||
|
"uuid": "^9.0.1",
|
||||||
|
"vue": "^3.5.12",
|
||||||
|
"vue-router": "^4.4.5",
|
||||||
|
"xterm": "^5.3.0",
|
||||||
|
"xterm-addon-fit": "^0.8.0",
|
||||||
|
"xterm-addon-search": "^0.13.0",
|
||||||
|
"xterm-addon-web-links": "^0.9.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/crypto-js": "^4.2.2",
|
||||||
|
"@types/lodash": "^4.14.178",
|
||||||
|
"@types/node": "^18.14.0",
|
||||||
|
"@types/nprogress": "^0.2.0",
|
||||||
|
"@types/sortablejs": "^1.15.8",
|
||||||
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
||||||
|
"@typescript-eslint/parser": "^6.7.4",
|
||||||
|
"@vitejs/plugin-vue": "^5.1.4",
|
||||||
|
"@vue/compiler-sfc": "^3.5.12",
|
||||||
|
"code-inspector-plugin": "^0.4.5",
|
||||||
|
"dotenv": "^16.3.1",
|
||||||
|
"eslint": "^8.35.0",
|
||||||
|
"eslint-plugin-vue": "^9.28.0",
|
||||||
|
"prettier": "^3.2.5",
|
||||||
|
"sass": "^1.80.5",
|
||||||
|
"typescript": "^5.6.3",
|
||||||
|
"vite": "^5.4.10",
|
||||||
|
"vue-eslint-parser": "^9.4.3"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 2 versions",
|
||||||
|
"not dead"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
@@ -26,7 +26,7 @@
|
|||||||
>
|
>
|
||||||
<template #default>
|
<template #default>
|
||||||
<div class="icon-selector-warp">
|
<div class="icon-selector-warp">
|
||||||
<div class="icon-selector-warp-title">{{ title }}</div>
|
<div class="ml10 mt10">{{ title }}</div>
|
||||||
<el-tabs v-model="state.fontIconTabActive" @tab-click="onIconClick">
|
<el-tabs v-model="state.fontIconTabActive" @tab-click="onIconClick">
|
||||||
<el-tab-pane lazy label="ele" name="ele">
|
<el-tab-pane lazy label="ele" name="ele">
|
||||||
<IconList :list="fontIconSheetsFilterList" :empty="emptyDescription" :prefix="state.fontIconPrefix" @get-icon="onColClick" />
|
<IconList :list="fontIconSheetsFilterList" :empty="emptyDescription" :prefix="state.fontIconPrefix" @get-icon="onColClick" />
|
||||||