Compare commits
	
		
			81 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					9366a76b84 | ||
| 
						 | 
					e03ceecd9a | ||
| 
						 | 
					99a746085b | ||
| 
						 | 
					74ae031853 | ||
| 
						 | 
					af14be9801 | ||
| 
						 | 
					df7413a9ea | ||
| 
						 | 
					e967e02095 | ||
| 
						 | 
					c1d09f447d | ||
| 
						 | 
					5e5afd49dc | ||
| 
						 | 
					2118acf244 | ||
| 
						 | 
					44a1bd626e | ||
| 
						 | 
					ea3c70a8a8 | ||
| 
						 | 
					6343173cf8 | ||
| 
						 | 
					6837a9c867 | ||
| 
						 | 
					a726927a28 | ||
| 
						 | 
					e135e4ce64 | ||
| 
						 | 
					43edef412c | ||
| 
						 | 
					2deb3109c2 | ||
| 
						 | 
					a80221a950 | ||
| 
						 | 
					10630847df | ||
| 
						 | 
					f43851698e | ||
| 
						 | 
					73884bb693 | ||
| 
						 | 
					1b5bb1de8b | ||
| 
						 | 
					4814793546 | ||
| 
						 | 
					d85bbff270 | ||
| 
						 | 
					bb1522f4dc | ||
| 
						 | 
					a7632fbf58 | ||
| 
						 | 
					c4cb4234fd | ||
| 
						 | 
					89e12678eb | ||
| 
						 | 
					137ebb8e9e | ||
| 
						 | 
					05625bd8c1 | ||
| 
						 | 
					4afeac5fdd | ||
| 
						 | 
					1d0e91f1af | ||
| 
						 | 
					cf5111a325 | ||
| 
						 | 
					78957a8ebd | ||
| 
						 | 
					4ed892a656 | ||
| 
						 | 
					3486b07003 | ||
| 
						 | 
					a5cd7caf19 | ||
| 
						 | 
					f2c7ef78c0 | ||
| 
						 | 
					653953ee76 | ||
| 
						 | 
					a831614d5a | ||
| 
						 | 
					ebe73e2f19 | ||
| 
						 | 
					29fd5a25d2 | ||
| 
						 | 
					44805ce580 | ||
| 
						 | 
					2a6d620830 | ||
| 
						 | 
					01d3e1ad28 | ||
| 
						 | 
					f4162c38db | ||
| 
						 | 
					1a4626c24d | ||
| 
						 | 
					d6eb9683d1 | ||
| 
						 | 
					e2b524dadb | ||
| 
						 | 
					8998a21626 | ||
| 
						 | 
					abc015aec0 | ||
| 
						 | 
					4ef8d27b1e | ||
| 
						 | 
					40b6e603fc | ||
| 
						 | 
					21498584b1 | ||
| 
						 | 
					408bac09a1 | ||
| 
						 | 
					582d879a77 | ||
| 
						 | 
					38ff5152e0 | ||
| 
						 | 
					d1d372e1bf | ||
| 
						 | 
					5e4793433b | ||
| 
						 | 
					54ad19f97e | ||
| 
						 | 
					fc166650b3 | ||
| 
						 | 
					2acc295259 | ||
| 
						 | 
					4b3ed1310d | ||
| 
						 | 
					b2cfd1517c | ||
| 
						 | 
					b13d27ccd6 | ||
| 
						 | 
					68e0088016 | ||
| 
						 | 
					bd1e83989d | ||
| 
						 | 
					263dfa6be7 | ||
| 
						 | 
					eb55f93864 | ||
| 
						 | 
					8589105e44 | ||
| 
						 | 
					986b187f0a | ||
| 
						 | 
					008d34c453 | ||
| 
						 | 
					49d3f988c9 | ||
| 
						 | 
					76475e807e | ||
| 
						 | 
					f93231da61 | ||
| 
						 | 
					bf75483a3c | ||
| 
						 | 
					b56b0187cf | ||
| 
						 | 
					7e7f02b502 | ||
| 
						 | 
					878985f7c5 | ||
| 
						 | 
					2133d9b737 | 
							
								
								
									
										47
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						@@ -1,43 +1,26 @@
 | 
				
			|||||||
# 构建前端资源
 | 
					ARG BASEIMAGES=m.daocloud.io/docker.io/alpine:3.20.2
 | 
				
			||||||
FROM node:18-bookworm-slim as fe-builder
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
WORKDIR /mayfly
 | 
					FROM ${BASEIMAGES} AS builder
 | 
				
			||||||
 | 
					ARG TARGETARCH
 | 
				
			||||||
 | 
					
 | 
				
			||||||
COPY mayfly_go_web .
 | 
					ARG MAYFLY_GO_VERSION
 | 
				
			||||||
 | 
					ARG MAYFLY_GO_DIR_NAME=mayfly-go-linux-${TARGETARCH}
 | 
				
			||||||
 | 
					ARG MAYFLY_GO_URL=https://gitee.com/dromara/mayfly-go/releases/download/${MAYFLY_GO_VERSION}/${MAYFLY_GO_DIR_NAME}.zip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN yarn config set registry 'https://registry.npmmirror.com' && \
 | 
					RUN wget -cO mayfly-go.zip ${MAYFLY_GO_URL} && \
 | 
				
			||||||
    yarn install && \
 | 
					    unzip mayfly-go.zip && \
 | 
				
			||||||
    yarn build
 | 
					    mv ${MAYFLY_GO_DIR_NAME}/* /opt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# 构建后端资源
 | 
					 | 
				
			||||||
FROM golang:1.21.5 as be-builder
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
ENV GOPROXY https://goproxy.cn
 | 
					FROM ${BASEIMAGES}
 | 
				
			||||||
WORKDIR /mayfly
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Copy the go source for building server
 | 
					ARG TZ=Asia/Shanghai
 | 
				
			||||||
COPY server .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
RUN go mod tidy && go mod download
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
COPY --from=fe-builder /mayfly/dist /mayfly/static/static
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Build
 | 
					 | 
				
			||||||
RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux \
 | 
					 | 
				
			||||||
    go build -a -ldflags=-w \
 | 
					 | 
				
			||||||
    -o mayfly-go main.go
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
FROM debian:bookworm-slim
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
RUN apt-get update && \
 | 
					 | 
				
			||||||
    apt-get install -y ca-certificates expat libncurses5 && \
 | 
					 | 
				
			||||||
    apt-get clean
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ENV TZ=Asia/Shanghai
 | 
					 | 
				
			||||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
 | 
					RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
 | 
				
			||||||
 | 
					
 | 
				
			||||||
WORKDIR /mayfly
 | 
					COPY --from=builder /opt/mayfly-go /usr/local/bin/mayfly-go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
COPY --from=be-builder /mayfly/mayfly-go /usr/local/bin/mayfly-go
 | 
					WORKDIR /mayfly-go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXPOSE 18888
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CMD ["mayfly-go"]
 | 
					CMD ["mayfly-go"]
 | 
				
			||||||
							
								
								
									
										39
									
								
								Dockerfile.sourcebuild
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,39 @@
 | 
				
			|||||||
 | 
					# 构建前端资源
 | 
				
			||||||
 | 
					FROM m.daocloud.io/docker.io/node:18-bookworm-slim as fe-builder
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					WORKDIR /mayfly
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPY frontend .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					RUN yarn config set registry 'https://registry.npmmirror.com' && \
 | 
				
			||||||
 | 
					    yarn install && \
 | 
				
			||||||
 | 
					    yarn build
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# 构建后端资源
 | 
				
			||||||
 | 
					FROM m.daocloud.io/docker.io/golang:1.23 as be-builder
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENV GOPROXY https://goproxy.cn
 | 
				
			||||||
 | 
					WORKDIR /mayfly
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Copy the go source for building server
 | 
				
			||||||
 | 
					COPY server .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					RUN go mod tidy && go mod download
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPY --from=fe-builder /mayfly/dist /mayfly/static/static
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Build
 | 
				
			||||||
 | 
					RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux \
 | 
				
			||||||
 | 
					    go build -a -ldflags=-w \
 | 
				
			||||||
 | 
					    -o mayfly-go main.go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					FROM m.daocloud.io/docker.io/alpine:3.20.2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG TZ=Asia/Shanghai
 | 
				
			||||||
 | 
					RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					WORKDIR /mayfly-go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPY --from=be-builder /mayfly/mayfly-go /usr/local/bin/mayfly-go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					CMD ["mayfly-go"]
 | 
				
			||||||
							
								
								
									
										64
									
								
								README.md
									
									
									
									
									
								
							
							
						
						@@ -1,5 +1,11 @@
 | 
				
			|||||||
# 🌈mayfly-go
 | 
					# 🌈mayfly-go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<p align="center">
 | 
				
			||||||
 | 
					    <a href="./README_EN.md">English</a> | 
 | 
				
			||||||
 | 
					    <a href="https://www.yuque.com/may-fly/mayfly-go">项目文档</a> | 
 | 
				
			||||||
 | 
					    <a href="https://space.bilibili.com/484091081/channel/collectiondetail?sid=392854">操作视频</a> | 
 | 
				
			||||||
 | 
					</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<p align="center">
 | 
					<p align="center">
 | 
				
			||||||
  <a href="https://gitee.com/dromara/mayfly-go" target="_blank">
 | 
					  <a href="https://gitee.com/dromara/mayfly-go" target="_blank">
 | 
				
			||||||
    <img src="https://gitee.com/dromara/mayfly-go/badge/star.svg?theme=white" alt="star"/>
 | 
					    <img src="https://gitee.com/dromara/mayfly-go/badge/star.svg?theme=white" alt="star"/>
 | 
				
			||||||
@@ -13,91 +19,91 @@
 | 
				
			|||||||
    <img src="https://img.shields.io/docker/pulls/mayflygo/mayfly-go.svg?label=docker%20pulls&color=fac858" alt="docker pulls"/>
 | 
					    <img src="https://img.shields.io/docker/pulls/mayflygo/mayfly-go.svg?label=docker%20pulls&color=fac858" alt="docker pulls"/>
 | 
				
			||||||
  </a>
 | 
					  </a>
 | 
				
			||||||
  <a href="https://github.com/golang/go" target="_blank">
 | 
					  <a href="https://github.com/golang/go" target="_blank">
 | 
				
			||||||
    <img src="https://img.shields.io/badge/Golang-1.21%2B-yellow.svg" alt="golang"/>
 | 
					    <img src="https://img.shields.io/badge/Golang-1.22%2B-yellow.svg" alt="golang"/>
 | 
				
			||||||
  </a>
 | 
					  </a>
 | 
				
			||||||
  <a href="https://cn.vuejs.org" target="_blank">
 | 
					  <a href="https://cn.vuejs.org" target="_blank">
 | 
				
			||||||
    <img src="https://img.shields.io/badge/Vue-3.x-green.svg" alt="vue">
 | 
					    <img src="https://img.shields.io/badge/Vue-3.x-green.svg" alt="vue">
 | 
				
			||||||
  </a>
 | 
					  </a>
 | 
				
			||||||
</p>
 | 
					</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 介绍
 | 
					## 前言
 | 
				
			||||||
 | 
					
 | 
				
			||||||
web 版 **linux(终端[终端回放] 文件 脚本 进程 计划任务)、数据库(mysql postgres oracle 达梦 高斯 sqlite)、redis(单机 哨兵 集群)、mongo 统一管理操作平台**
 | 
					web 版 **linux(终端[终端回放、命令过滤] 文件 脚本 进程 计划任务)。数据库(mysql postgres oracle sqlserver 达梦 高斯 sqlite)数据操作、数据同步、数据迁移。redis(单机 哨兵 集群)。mongo 等集工单流程审批于一体的统一管理操作平台。**
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 开发语言与主要框架
 | 
					## 开发语言与主要框架
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- 前端:typescript、vue3、element-plus
 | 
					- 前端:typescript、vue3、element-plus
 | 
				
			||||||
- 后端:golang、gin、gorm
 | 
					- 后端:golang、gin、gorm
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 交流及问题反馈加 QQ 群
 | 
					## 交流及问题反馈加 QQ 群
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<a target="_blank" href="https://qm.qq.com/cgi-bin/qm/qr?k=IdJSHW0jTMhmWFHBUS9a83wxtrxDDhFj&jump_from=webapi">119699946</a>
 | 
					<a target="_blank" href="https://qm.qq.com/cgi-bin/qm/qr?k=IdJSHW0jTMhmWFHBUS9a83wxtrxDDhFj&jump_from=webapi">119699946</a>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 系统相关资料
 | 
					## 演示环境
 | 
				
			||||||
 | 
					 | 
				
			||||||
- 项目文档: https://www.yuque.com/may-fly/mayfly-go
 | 
					 | 
				
			||||||
- 系统操作视频: https://space.bilibili.com/484091081/channel/collectiondetail?sid=392854
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
### 演示环境
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
http://go.mayfly.run
 | 
					http://go.mayfly.run
 | 
				
			||||||
账号/密码:test/test123.
 | 
					账号/密码:test/test123.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 系统核心功能截图
 | 
					## 系统核心功能截图
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 记录操作记录
 | 
					#### 首页
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### 机器操作
 | 
					#### 机器操作
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 状态查看
 | 
					##### 状态查看
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### ssh 终端
 | 
					##### ssh 终端
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 文件操作
 | 
					##### 文件操作
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### 数据库操作
 | 
					#### 数据库操作
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### sql 编辑器
 | 
					##### sql 编辑器
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 在线增删改查数据
 | 
					##### 在线增删改查数据
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### Redis 操作
 | 
					#### Redis 操作
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### Mongo 操作
 | 
					#### Mongo 操作
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 系统管理
 | 
					#### 工单流程审批
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### 系统管理
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 账号管理
 | 
					##### 账号管理
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 角色管理
 | 
					##### 角色管理
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### 资源管理
 | 
					##### 菜单资源管理
 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**其他更多功能&操作指南可查看在线文档**: https://www.yuque.com/may-fly/mayfly-go
 | 
					**其他更多功能&操作指南可查看上述项目文档**
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### 💌 支持作者
 | 
					## 💌 支持作者
 | 
				
			||||||
 | 
					
 | 
				
			||||||
如果觉得项目不错,或者已经在使用了,希望你可以去 <a target="_blank" href="https://github.com/dromara/mayfly-go">Github</a> 或者 <a target="_blank" href="https://gitee.com/dromara/mayfly-go">Gitee</a> 帮我点个 ⭐ Star,这将是对我极大的鼓励与支持。
 | 
					如果觉得项目不错,或者已经在使用了,希望你可以去 <a target="_blank" href="https://github.com/dromara/mayfly-go">Github</a> 或者 <a target="_blank" href="https://gitee.com/dromara/mayfly-go">Gitee</a> 帮我点个 ⭐ Star,这将是对我极大的鼓励与支持。
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										105
									
								
								README_EN.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,105 @@
 | 
				
			|||||||
 | 
					# 🌈mayfly-go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<p align="center">
 | 
				
			||||||
 | 
					    <a href="./README.md">中文介绍</a> | 
 | 
				
			||||||
 | 
					    <a href="https://www.yuque.com/may-fly/mayfly-go">Documentation</a> | 
 | 
				
			||||||
 | 
					    <a href="https://space.bilibili.com/484091081/channel/collectiondetail?sid=392854">Operate Video</a> 
 | 
				
			||||||
 | 
					</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<p align="center">
 | 
				
			||||||
 | 
					  <a href="https://gitee.com/dromara/mayfly-go" target="_blank">
 | 
				
			||||||
 | 
					    <img src="https://gitee.com/dromara/mayfly-go/badge/star.svg?theme=white" alt="star"/>
 | 
				
			||||||
 | 
					    <img src="https://gitee.com/dromara/mayfly-go/badge/fork.svg" alt="fork"/>
 | 
				
			||||||
 | 
					  </a>
 | 
				
			||||||
 | 
					  <a href="https://github.com/dromara/mayfly-go" target="_blank">
 | 
				
			||||||
 | 
					    <img src="https://img.shields.io/github/stars/dromara/mayfly-go.svg?style=social" alt="github star"/>
 | 
				
			||||||
 | 
					    <img src="https://img.shields.io/github/forks/dromara/mayfly-go.svg?style=social" alt="github fork"/>
 | 
				
			||||||
 | 
					  </a>
 | 
				
			||||||
 | 
					  <a href="https://hub.docker.com/r/mayflygo/mayfly-go/tags" target="_blank">
 | 
				
			||||||
 | 
					    <img src="https://img.shields.io/docker/pulls/mayflygo/mayfly-go.svg?label=docker%20pulls&color=fac858" alt="docker pulls"/>
 | 
				
			||||||
 | 
					  </a>
 | 
				
			||||||
 | 
					  <a href="https://github.com/golang/go" target="_blank">
 | 
				
			||||||
 | 
					    <img src="https://img.shields.io/badge/Golang-1.22%2B-yellow.svg" alt="golang"/>
 | 
				
			||||||
 | 
					  </a>
 | 
				
			||||||
 | 
					  <a href="https://cn.vuejs.org" target="_blank">
 | 
				
			||||||
 | 
					    <img src="https://img.shields.io/badge/Vue-3.x-green.svg" alt="vue">
 | 
				
			||||||
 | 
					  </a>
 | 
				
			||||||
 | 
					</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Preface
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Browser-based management platform. **linux(Terminal [terminal playback, command filtering], file, script, process, cronjob), database (mysql, postgres, oracle, sqlserver, Dameng, gauss, sqlite) data operation, data synchronization, data migration, redis(standlone, sentinel, cluster), mongo and other unified management and operation platforms that integrate work order process approval.**
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Development languages and major frameworks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- frontend:typescript、vue3、element-plus
 | 
				
			||||||
 | 
					- backend:golang、gin、gorm
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Demo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					http://go.mayfly.run
 | 
				
			||||||
 | 
					account/password:test/test123.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Screenshots of core features
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Home page
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Machine Operation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### Status
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### SSH Terminal
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### File Operation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Database Operation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### SQL Editor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### Add, delete, update and check data online
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Redis Operation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Mongo Operation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Work order process approval
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### System Management
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### Account
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### Role
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					##### Menu & Permission
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					**Additional features & instructions can be found in the project documentation above.**
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## 💌 Supporting Author
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					If you think the project is good, or you are already using it, I hope you can go to <a target="_blank" href="https://github.com/dromara/mayfly-go">Github</a> to help me click ⭐ Star, which will be a great encouragement and support for me.
 | 
				
			||||||
@@ -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"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -28,13 +28,13 @@ function buildWeb() {
 | 
				
			|||||||
    cd ${web_folder}
 | 
					    cd ${web_folder}
 | 
				
			||||||
    copy2Server=$1
 | 
					    copy2Server=$1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    echo_yellow "-------------------打包前端开始-------------------"
 | 
					    echo_yellow "-------------------Start bundling frontends-------------------"
 | 
				
			||||||
    yarn run build
 | 
					    yarn run build
 | 
				
			||||||
    if [ "${copy2Server}" == "2" ] ; then
 | 
					    if [ "${copy2Server}" == "2" ] ; then
 | 
				
			||||||
        echo_green '将打包后的静态文件拷贝至server/static/static'
 | 
					        echo_green 'Copy the packaged static files to server/static/static'
 | 
				
			||||||
        rm -rf ${server_folder}/static/static && mkdir -p ${server_folder}/static/static && cp -r ${web_folder}/dist/* ${server_folder}/static/static
 | 
					        rm -rf ${server_folder}/static/static && mkdir -p ${server_folder}/static/static && cp -r ${web_folder}/dist/* ${server_folder}/static/static
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
    echo_yellow ">>>>>>>>>>>>>>>>>>>打包前端结束<<<<<<<<<<<<<<<<<<<<\n"
 | 
					    echo_yellow ">>>>>>>>>>>>>>>>>>>End of packaging frontend<<<<<<<<<<<<<<<<<<<<\n"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function build() {
 | 
					function build() {
 | 
				
			||||||
@@ -46,10 +46,10 @@ function build() {
 | 
				
			|||||||
    arch=$3
 | 
					    arch=$3
 | 
				
			||||||
    copyDocScript=$4
 | 
					    copyDocScript=$4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    echo_yellow "-------------------${os}-${arch}打包构建开始-------------------"
 | 
					    echo_yellow "-------------------Start a bundle build - ${os}-${arch}-------------------"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cd ${server_folder}
 | 
					    cd ${server_folder}
 | 
				
			||||||
    echo_green "打包构建可执行文件..."
 | 
					    echo_green "Package build executables..."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    execFileName=${exec_file_name}
 | 
					    execFileName=${exec_file_name}
 | 
				
			||||||
    # 如果是windows系统,可执行文件需要添加.exe结尾
 | 
					    # 如果是windows系统,可执行文件需要添加.exe结尾
 | 
				
			||||||
@@ -59,13 +59,13 @@ function build() {
 | 
				
			|||||||
    CGO_ENABLE=0 GOOS=${os} GOARCH=${arch} go build -ldflags=-w -o ${execFileName} main.go
 | 
					    CGO_ENABLE=0 GOOS=${os} GOARCH=${arch} go build -ldflags=-w -o ${execFileName} main.go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if [ -d ${toFolder} ] ; then
 | 
					    if [ -d ${toFolder} ] ; then
 | 
				
			||||||
        echo_green "目标文件夹已存在,清空文件夹"
 | 
					        echo_green "The desired folder already exists. Clear the folder"
 | 
				
			||||||
        sudo rm -rf ${toFolder}
 | 
					        sudo rm -rf ${toFolder}
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
    echo_green "创建'${toFolder}'目录"
 | 
					    echo_green "Create '${toFolder}' Directory"
 | 
				
			||||||
    mkdir ${toFolder}
 | 
					    mkdir ${toFolder}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    echo_green "移动二进制文件至'${toFolder}'"
 | 
					    echo_green "Move binary to '${toFolder}'"
 | 
				
			||||||
    mv ${server_folder}/${execFileName} ${toFolder}
 | 
					    mv ${server_folder}/${execFileName} ${toFolder}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # if [ "${copy2Server}" == "1" ] ; then
 | 
					    # if [ "${copy2Server}" == "1" ] ; then
 | 
				
			||||||
@@ -74,16 +74,17 @@ function build() {
 | 
				
			|||||||
    # fi
 | 
					    # fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if [ "${copyDocScript}" == "1" ] ; then
 | 
					    if [ "${copyDocScript}" == "1" ] ; then
 | 
				
			||||||
        echo_green "拷贝脚本等资源文件[config.yml.example、mayfly-go.sql、mayfly-go.sqlite、readme.txt、startup.sh、shutdown.sh]"
 | 
					        echo_green "Copy resources such as scripts [config.yml.example、mayfly-go.sql、mayfly-go.sqlite、readme.txt、startup.sh、shutdown.sh]"
 | 
				
			||||||
        cp ${server_folder}/config.yml.example ${toFolder}
 | 
					        cp ${server_folder}/config.yml.example ${toFolder}
 | 
				
			||||||
        cp ${server_folder}/readme.txt ${toFolder}
 | 
					        cp ${server_folder}/readme.txt ${toFolder}
 | 
				
			||||||
 | 
					        cp ${server_folder}/readme_cn.txt ${toFolder}
 | 
				
			||||||
        cp ${server_folder}/resources/script/startup.sh ${toFolder}
 | 
					        cp ${server_folder}/resources/script/startup.sh ${toFolder}
 | 
				
			||||||
        cp ${server_folder}/resources/script/shutdown.sh ${toFolder}
 | 
					        cp ${server_folder}/resources/script/shutdown.sh ${toFolder}
 | 
				
			||||||
        cp ${server_folder}/resources/script/sql/mayfly-go.sql ${toFolder}
 | 
					        cp ${server_folder}/resources/script/sql/mayfly-go.sql ${toFolder}
 | 
				
			||||||
        cp ${server_folder}/resources/data/mayfly-go.sqlite ${toFolder}
 | 
					        cp ${server_folder}/resources/data/mayfly-go.sqlite ${toFolder}
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    echo_yellow ">>>>>>>>>>>>>>>>>>>${os}-${arch}打包构建完成<<<<<<<<<<<<<<<<<<<<\n"
 | 
					    echo_yellow ">>>>>>>>>>>>>>>>>>> ${os}-${arch} - Bundle build complete <<<<<<<<<<<<<<<<<<<<\n"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function buildLinuxAmd64() {
 | 
					function buildLinuxAmd64() {
 | 
				
			||||||
@@ -103,25 +104,25 @@ function buildMac() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function buildDocker() {
 | 
					function buildDocker() {
 | 
				
			||||||
    echo_yellow "-------------------构建docker镜像开始-------------------"
 | 
					    echo_yellow "-------------------Start building the docker image-------------------"
 | 
				
			||||||
    imageVersion=$1
 | 
					    imageVersion=$1
 | 
				
			||||||
    imageName="mayflygo/mayfly-go:${imageVersion}"
 | 
					    imageName="mayfly/mayfly-go:${imageVersion}"
 | 
				
			||||||
    docker build --platform linux/amd64 -t "${imageName}" .
 | 
					    docker build --no-cache --platform linux/amd64 --build-arg MAYFLY_GO_VERSION="${imageVersion}" -t "${imageName}" .
 | 
				
			||||||
    echo_green "docker镜像构建完成->[${imageName}]"
 | 
					    echo_green "The docker image is built -> [${imageName}]"
 | 
				
			||||||
    echo_yellow "-------------------构建docker镜像结束-------------------"
 | 
					    echo_yellow "-------------------Finished building the docker image-------------------"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function buildxDocker() {
 | 
					function buildxDocker() {
 | 
				
			||||||
    echo_yellow "-------------------docker buildx构建镜像开始-------------------"
 | 
					    echo_yellow "-------------------The docker buildx build image starts-------------------"
 | 
				
			||||||
    imageVersion=$1
 | 
					    imageVersion=$1
 | 
				
			||||||
    imageName="ccr.ccs.tencentyun.com/mayfly/mayfly-go:${imageVersion}"
 | 
					    imageName="ccr.ccs.tencentyun.com/mayfly/mayfly-go:${imageVersion}"
 | 
				
			||||||
    docker buildx build --push --platform linux/amd64,linux/arm64 -t "${imageName}" .
 | 
					    docker buildx build --no-cache --push --platform linux/amd64,linux/arm64 --build-arg MAYFLY_GO_VERSION="${imageVersion}" -t "${imageName}" .
 | 
				
			||||||
    echo_green "docker多版本镜像构建完成->[${imageName}]"
 | 
					    echo_green "The docker multi-architecture version image is built -> [${imageName}]"
 | 
				
			||||||
    echo_yellow "-------------------docker buildx构建镜像结束-------------------"
 | 
					    echo_yellow "-------------------The docker buildx image is finished-------------------"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function runBuild() {
 | 
					function runBuild() {
 | 
				
			||||||
    read -p "请选择构建版本[0|其他->除docker镜像外其他 1->linux-amd64 2->linux-arm64 3->windows 4->mac 5->docker 6->docker buildx]: " buildType
 | 
					    read -p "Select build version [0 | Other->Other than docker image 1->linux-amd64 2->linux-arm64 3->windows 4->mac 5->docker 6->docker buildx]: " buildType
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    toPath="."
 | 
					    toPath="."
 | 
				
			||||||
    imageVersion="latest"
 | 
					    imageVersion="latest"
 | 
				
			||||||
@@ -129,16 +130,16 @@ function runBuild() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    if [[ "${buildType}" != "5" ]] && [[ "${buildType}" != "6" ]] ; then
 | 
					    if [[ "${buildType}" != "5" ]] && [[ "${buildType}" != "6" ]] ; then
 | 
				
			||||||
        # 构建结果的目的路径
 | 
					        # 构建结果的目的路径
 | 
				
			||||||
        read -p "请输入构建产物输出目录[默认当前路径]: " toPath
 | 
					        read -p "Please enter the build product output directory [default current path]: " toPath
 | 
				
			||||||
        if [ ! -d ${toPath} ] ; then
 | 
					        if [ ! -d ${toPath} ] ; then
 | 
				
			||||||
            echo_red "构建产物输出目录不存在!"
 | 
					            echo_red "Build product output directory does not exist!"
 | 
				
			||||||
            exit;
 | 
					            exit;
 | 
				
			||||||
        fi
 | 
					        fi
 | 
				
			||||||
        if [ "${toPath}" == "" ] ; then
 | 
					        if [ "${toPath}" == "" ] ; then
 | 
				
			||||||
            toPath="."
 | 
					            toPath="."
 | 
				
			||||||
        fi
 | 
					        fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        read -p "是否拷贝文档&脚本[0->否 1->是][默认是]: " copyDocScript
 | 
					        read -p "Whether to copy documents & Scripts [0-> No 1-> Yes][Default yes]: " copyDocScript
 | 
				
			||||||
        if [ "${copyDocScript}" == "" ] ; then
 | 
					        if [ "${copyDocScript}" == "" ] ; then
 | 
				
			||||||
            copyDocScript="1"
 | 
					            copyDocScript="1"
 | 
				
			||||||
        fi
 | 
					        fi
 | 
				
			||||||
@@ -154,7 +155,7 @@ function runBuild() {
 | 
				
			|||||||
    fi
 | 
					    fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if [[ "${buildType}" == "5" ]] || [[ "${buildType}" == "6" ]] ; then
 | 
					    if [[ "${buildType}" == "5" ]] || [[ "${buildType}" == "6" ]] ; then
 | 
				
			||||||
        read -p "请输入docker镜像版本号[默认latest]: " imageVersion
 | 
					        read -p "Please enter the docker image version (default latest) : " imageVersion
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if [ "${imageVersion}" == "" ] ; then
 | 
					        if [ "${imageVersion}" == "" ] ; then
 | 
				
			||||||
            imageVersion="latest"
 | 
					            imageVersion="latest"
 | 
				
			||||||
@@ -189,7 +190,7 @@ function runBuild() {
 | 
				
			|||||||
    esac
 | 
					    esac
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if [[ "${buildType}" != "5" ]] && [[ "${buildType}" != "6" ]] ; then
 | 
					    if [[ "${buildType}" != "5" ]] && [[ "${buildType}" != "6" ]] ; then
 | 
				
			||||||
        echo_green "删除['${server_folder}/static/static']下静态资源文件."
 | 
					        echo_green "Delete static assets under ['${server_folder}/static/static']."
 | 
				
			||||||
        # 删除静态资源文件,保留一个favicon.ico,否则后端启动会报错
 | 
					        # 删除静态资源文件,保留一个favicon.ico,否则后端启动会报错
 | 
				
			||||||
        rm -rf ${server_folder}/static/static/assets
 | 
					        rm -rf ${server_folder}/static/static/assets
 | 
				
			||||||
        rm -rf ${server_folder}/static/static/config.js
 | 
					        rm -rf ${server_folder}/static/static/config.js
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,7 +14,7 @@ services:
 | 
				
			|||||||
    restart: always
 | 
					    restart: always
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  server:
 | 
					  server:
 | 
				
			||||||
    image: mayfly-go:v1.3.1
 | 
					    image: ccr.ccs.tencentyun.com/mayfly/mayfly-go:v1.8.5
 | 
				
			||||||
    build:
 | 
					    build:
 | 
				
			||||||
      context: .
 | 
					      context: .
 | 
				
			||||||
      dockerfile: Dockerfile
 | 
					      dockerfile: Dockerfile
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,3 +6,5 @@ VITE_OPEN = false
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# public path 配置线上环境路径(打包)
 | 
					# public path 配置线上环境路径(打包)
 | 
				
			||||||
VITE_PUBLIC_PATH = ''
 | 
					VITE_PUBLIC_PATH = ''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					VITE_EDITOR=idea
 | 
				
			||||||
							
								
								
									
										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>
 | 
				
			||||||
							
								
								
									
										72
									
								
								frontend/package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					    "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.2.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.8",
 | 
				
			||||||
 | 
					        "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.6",
 | 
				
			||||||
 | 
					        "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.13",
 | 
				
			||||||
 | 
					        "vue-i18n": "^10.0.4",
 | 
				
			||||||
 | 
					        "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.2.0",
 | 
				
			||||||
 | 
					        "@vue/compiler-sfc": "^3.5.13",
 | 
				
			||||||
 | 
					        "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.81.0",
 | 
				
			||||||
 | 
					        "typescript": "^5.6.3",
 | 
				
			||||||
 | 
					        "vite": "^5.4.11",
 | 
				
			||||||
 | 
					        "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  | 
@@ -1,10 +1,11 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
 | 
					    <el-config-provider :size="getGlobalComponentSize" :locale="getGlobalI18n">
 | 
				
			||||||
        <div class="h100">
 | 
					        <div class="h100">
 | 
				
			||||||
            <el-watermark
 | 
					            <el-watermark
 | 
				
			||||||
                :zIndex="10000000"
 | 
					                :zIndex="10000000"
 | 
				
			||||||
                :width="210"
 | 
					                :width="210"
 | 
				
			||||||
                v-if="themeConfig.isWatermark"
 | 
					                v-if="themeConfig.isWatermark"
 | 
				
			||||||
            :font="{ color: 'rgba(180, 180, 180, 0.5)' }"
 | 
					                :font="{ color: 'rgba(180, 180, 180, 0.3)' }"
 | 
				
			||||||
                :content="themeConfig.watermarkText"
 | 
					                :content="themeConfig.watermarkText"
 | 
				
			||||||
                class="h100"
 | 
					                class="h100"
 | 
				
			||||||
            >
 | 
					            >
 | 
				
			||||||
@@ -15,10 +16,11 @@
 | 
				
			|||||||
            <LockScreen v-if="themeConfig.isLockScreen" />
 | 
					            <LockScreen v-if="themeConfig.isLockScreen" />
 | 
				
			||||||
            <Setings ref="setingsRef" v-show="themeConfig.lockScreenTime !== 0" />
 | 
					            <Setings ref="setingsRef" v-show="themeConfig.lockScreenTime !== 0" />
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					    </el-config-provider>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<script setup lang="ts" name="app">
 | 
					<script setup lang="ts" name="app">
 | 
				
			||||||
import { ref, onMounted, onUnmounted, nextTick, watch } from 'vue';
 | 
					import { ref, onMounted, onUnmounted, nextTick, watch, computed } from 'vue';
 | 
				
			||||||
import { useRoute } from 'vue-router';
 | 
					import { useRoute } from 'vue-router';
 | 
				
			||||||
import { storeToRefs } from 'pinia';
 | 
					import { storeToRefs } from 'pinia';
 | 
				
			||||||
import { useThemeConfig } from '@/store/themeConfig';
 | 
					import { useThemeConfig } from '@/store/themeConfig';
 | 
				
			||||||
@@ -26,6 +28,10 @@ import LockScreen from '@/layout/lockScreen/index.vue';
 | 
				
			|||||||
import Setings from '@/layout/navBars/breadcrumb/setings.vue';
 | 
					import Setings from '@/layout/navBars/breadcrumb/setings.vue';
 | 
				
			||||||
import mittBus from '@/common/utils/mitt';
 | 
					import mittBus from '@/common/utils/mitt';
 | 
				
			||||||
import { useIntervalFn } from '@vueuse/core';
 | 
					import { useIntervalFn } from '@vueuse/core';
 | 
				
			||||||
 | 
					import { useI18n } from 'vue-i18n';
 | 
				
			||||||
 | 
					import EnumValue from './common/Enum';
 | 
				
			||||||
 | 
					import { I18nEnum } from './common/commonEnum';
 | 
				
			||||||
 | 
					import { saveThemeConfig } from './common/utils/storage';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const setingsRef = ref();
 | 
					const setingsRef = ref();
 | 
				
			||||||
const route = useRoute();
 | 
					const route = useRoute();
 | 
				
			||||||
@@ -33,6 +39,9 @@ const route = useRoute();
 | 
				
			|||||||
const themeConfigStores = useThemeConfig();
 | 
					const themeConfigStores = useThemeConfig();
 | 
				
			||||||
const { themeConfig } = storeToRefs(themeConfigStores);
 | 
					const { themeConfig } = storeToRefs(themeConfigStores);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 定义变量内容
 | 
				
			||||||
 | 
					const { locale, t } = useI18n();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// 布局配置弹窗打开
 | 
					// 布局配置弹窗打开
 | 
				
			||||||
const openSetingsDrawer = () => {
 | 
					const openSetingsDrawer = () => {
 | 
				
			||||||
    setingsRef.value.openDrawer();
 | 
					    setingsRef.value.openDrawer();
 | 
				
			||||||
@@ -67,6 +76,31 @@ watch(
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
);
 | 
					);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					watch(
 | 
				
			||||||
 | 
					    () => themeConfig.value.globalI18n,
 | 
				
			||||||
 | 
					    (val) => {
 | 
				
			||||||
 | 
					        locale.value = val;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					watch(
 | 
				
			||||||
 | 
					    themeConfig,
 | 
				
			||||||
 | 
					    (val) => {
 | 
				
			||||||
 | 
					        saveThemeConfig(val);
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    { deep: true }
 | 
				
			||||||
 | 
					);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 获取全局组件大小
 | 
				
			||||||
 | 
					const getGlobalComponentSize = computed(() => {
 | 
				
			||||||
 | 
					    return themeConfig.value.globalComponentSize;
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 获取全局 i18n
 | 
				
			||||||
 | 
					const getGlobalI18n = computed(() => {
 | 
				
			||||||
 | 
					    return EnumValue.getEnumByValue(I18nEnum, locale.value)?.extra.el;
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// 刷新水印时间
 | 
					// 刷新水印时间
 | 
				
			||||||
const { pause, resume } = useIntervalFn(() => {
 | 
					const { pause, resume } = useIntervalFn(() => {
 | 
				
			||||||
    if (!themeConfig.value.isWatermark) {
 | 
					    if (!themeConfig.value.isWatermark) {
 | 
				
			||||||
@@ -96,7 +130,7 @@ watch(
 | 
				
			|||||||
    () => route.path,
 | 
					    () => route.path,
 | 
				
			||||||
    () => {
 | 
					    () => {
 | 
				
			||||||
        nextTick(() => {
 | 
					        nextTick(() => {
 | 
				
			||||||
            document.title = `${route.meta.title} - ${themeConfig.value.globalTitle}` || themeConfig.value.globalTitle;
 | 
					            document.title = `${t((route.meta.title as string) || '')} - ${themeConfig.value.globalTitle}` || themeConfig.value.globalTitle;
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
);
 | 
					);
 | 
				
			||||||
							
								
								
									
										66
									
								
								frontend/src/assets/iconfont/iconfont.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										121
									
								
								frontend/src/assets/iconfont/iconfont.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,121 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					    "id": "3953964",
 | 
				
			||||||
 | 
					    "name": "mayfly-go",
 | 
				
			||||||
 | 
					    "font_family": "iconfont",
 | 
				
			||||||
 | 
					    "css_prefix_text": "icon-",
 | 
				
			||||||
 | 
					    "description": "",
 | 
				
			||||||
 | 
					    "glyphs": [
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "2967035",
 | 
				
			||||||
 | 
					            "name": "符号-英文",
 | 
				
			||||||
 | 
					            "font_class": "fuhao-yingwen",
 | 
				
			||||||
 | 
					            "unicode": "e712",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59154
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "26283783",
 | 
				
			||||||
 | 
					            "name": "符号-中文",
 | 
				
			||||||
 | 
					            "font_class": "fuhao-zhongwen",
 | 
				
			||||||
 | 
					            "unicode": "e603",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58883
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "23957582",
 | 
				
			||||||
 | 
					            "name": "MongoDB",
 | 
				
			||||||
 | 
					            "font_class": "mongo",
 | 
				
			||||||
 | 
					            "unicode": "e646",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58950
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "4969649",
 | 
				
			||||||
 | 
					            "name": "Redis",
 | 
				
			||||||
 | 
					            "font_class": "op-redis",
 | 
				
			||||||
 | 
					            "unicode": "e728",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59176
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "22442993",
 | 
				
			||||||
 | 
					            "name": "PostgreSQL",
 | 
				
			||||||
 | 
					            "font_class": "op-postgres",
 | 
				
			||||||
 | 
					            "unicode": "e8b7",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59575
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "12295203",
 | 
				
			||||||
 | 
					            "name": "达梦数据库",
 | 
				
			||||||
 | 
					            "font_class": "db-dm",
 | 
				
			||||||
 | 
					            "unicode": "e6f0",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59120
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "10055634",
 | 
				
			||||||
 | 
					            "name": "云数据库MongoDB",
 | 
				
			||||||
 | 
					            "font_class": "op-mongo",
 | 
				
			||||||
 | 
					            "unicode": "e7d7",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59351
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "10055642",
 | 
				
			||||||
 | 
					            "name": "云数据库 RDS MySQL",
 | 
				
			||||||
 | 
					            "font_class": "op-mysql",
 | 
				
			||||||
 | 
					            "unicode": "e7d8",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59352
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "3876165",
 | 
				
			||||||
 | 
					            "name": "redis",
 | 
				
			||||||
 | 
					            "font_class": "redis",
 | 
				
			||||||
 | 
					            "unicode": "e619",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58905
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "25271976",
 | 
				
			||||||
 | 
					            "name": "oracle",
 | 
				
			||||||
 | 
					            "font_class": "oracle",
 | 
				
			||||||
 | 
					            "unicode": "e507",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58631
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "8105644",
 | 
				
			||||||
 | 
					            "name": "mariadb",
 | 
				
			||||||
 | 
					            "font_class": "mariadb",
 | 
				
			||||||
 | 
					            "unicode": "e513",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58643
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "13601813",
 | 
				
			||||||
 | 
					            "name": "sqlite",
 | 
				
			||||||
 | 
					            "font_class": "sqlite",
 | 
				
			||||||
 | 
					            "unicode": "e546",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58694
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "29340317",
 | 
				
			||||||
 | 
					            "name": "temp-mssql",
 | 
				
			||||||
 | 
					            "font_class": "MSSQLNATIVE",
 | 
				
			||||||
 | 
					            "unicode": "e600",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58880
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "7699332",
 | 
				
			||||||
 | 
					            "name": "gaussdb",
 | 
				
			||||||
 | 
					            "font_class": "gauss",
 | 
				
			||||||
 | 
					            "unicode": "e683",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59011
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "34836637",
 | 
				
			||||||
 | 
					            "name": "kingbase",
 | 
				
			||||||
 | 
					            "font_class": "kingbase",
 | 
				
			||||||
 | 
					            "unicode": "e882",
 | 
				
			||||||
 | 
					            "unicode_decimal": 59522
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "icon_id": "33047500",
 | 
				
			||||||
 | 
					            "name": "vastbase",
 | 
				
			||||||
 | 
					            "font_class": "vastbase",
 | 
				
			||||||
 | 
					            "unicode": "e62b",
 | 
				
			||||||
 | 
					            "unicode_decimal": 58923
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
		 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  | 
@@ -69,7 +69,7 @@ class Api {
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    async xhrReq(param: any = null, options: any = {}): Promise<any> {
 | 
					    async xhrReq(param: any = null, options: any = {}): Promise<any> {
 | 
				
			||||||
        if (this.beforeHandler) {
 | 
					        if (this.beforeHandler) {
 | 
				
			||||||
            this.beforeHandler(param);
 | 
					            await this.beforeHandler(param);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        return request.xhrReq(this.method, this.url, param, options);
 | 
					        return request.xhrReq(this.method, this.url, param, options);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -22,6 +22,8 @@ export class EnumValue {
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    tag: EnumValueTag;
 | 
					    tag: EnumValueTag;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    extra: any;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    constructor(value: any, label: string) {
 | 
					    constructor(value: any, label: string) {
 | 
				
			||||||
        this.value = value;
 | 
					        this.value = value;
 | 
				
			||||||
        this.label = label;
 | 
					        this.label = label;
 | 
				
			||||||
@@ -53,6 +55,11 @@ export class EnumValue {
 | 
				
			|||||||
        return this;
 | 
					        return this;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    setExtra(extra: any): EnumValue {
 | 
				
			||||||
 | 
					        this.extra = extra;
 | 
				
			||||||
 | 
					        return this;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public static of(value: any, label: string): EnumValue {
 | 
					    public static of(value: any, label: string): EnumValue {
 | 
				
			||||||
        return new EnumValue(value, label);
 | 
					        return new EnumValue(value, label);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -60,11 +67,12 @@ export class EnumValue {
 | 
				
			|||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * 根据枚举值获取指定枚举值对象
 | 
					     * 根据枚举值获取指定枚举值对象
 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @param enumValues 所有枚举值
 | 
					     * @param enums 枚举对象
 | 
				
			||||||
     * @param value 需要匹配的枚举值
 | 
					     * @param value 需要匹配的枚举值
 | 
				
			||||||
     * @returns 枚举值对象
 | 
					     * @returns 枚举值对象
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    static getEnumByValue(enumValues: EnumValue[], value: any): EnumValue | null {
 | 
					    static getEnumByValue(enums: any, value: any): EnumValue | null {
 | 
				
			||||||
 | 
					        const enumValues = Object.values(enums) as any;
 | 
				
			||||||
        for (let enumValue of enumValues) {
 | 
					        for (let enumValue of enumValues) {
 | 
				
			||||||
            if (enumValue.value == value) {
 | 
					            if (enumValue.value == value) {
 | 
				
			||||||
                return enumValue;
 | 
					                return enumValue;
 | 
				
			||||||
@@ -1,3 +1,5 @@
 | 
				
			|||||||
 | 
					import { i18n } from '@/i18n';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * 不符合业务断言错误
 | 
					 * 不符合业务断言错误
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
@@ -31,6 +33,16 @@ export function notBlank(obj: any, msg: string) {
 | 
				
			|||||||
    isTrue(obj, msg);
 | 
					    isTrue(obj, msg);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 断言不能为空值,即null,0,''等
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param obj 对象
 | 
				
			||||||
 | 
					 * @param field 字段(支持i18n msgKey)
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function notBlankI18n(obj: any, field: string) {
 | 
				
			||||||
 | 
					    notBlank(obj, i18n.global.t('common.fieldNotEmpty', { field: i18n.global.t(field) }));
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * 断言两对象相等
 | 
					 * 断言两对象相等
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
@@ -65,3 +77,13 @@ export function notEmpty(str: string, msg: string) {
 | 
				
			|||||||
        throw new AssertError(msg);
 | 
					        throw new AssertError(msg);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 断言字符串不能为空
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param str 字符串
 | 
				
			||||||
 | 
					 * @param field 字段(支持i18n msgKey)
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function notEmptyI18n(str: string, field: string) {
 | 
				
			||||||
 | 
					    notEmpty(str, i18n.global.t('common.fieldNotEmpty', { field: i18n.global.t(field) }));
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										33
									
								
								frontend/src/common/commonEnum.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,33 @@
 | 
				
			|||||||
 | 
					import EnumValue from './Enum';
 | 
				
			||||||
 | 
					// element plus 自带国际化
 | 
				
			||||||
 | 
					import zhcnLocale from 'element-plus/es/locale/lang/zh-cn';
 | 
				
			||||||
 | 
					import enLocale from 'element-plus/es/locale/lang/en';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// i18n
 | 
				
			||||||
 | 
					export const I18nEnum = {
 | 
				
			||||||
 | 
					    ZhCn: EnumValue.of('zh-cn', '简体中文').setExtra({ icon: 'iconfont icon-fuhao-zhongwen', el: zhcnLocale }),
 | 
				
			||||||
 | 
					    En: EnumValue.of('en', 'English').setExtra({ icon: 'iconfont icon-fuhao-yingwen', el: enLocale }),
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 资源类型
 | 
				
			||||||
 | 
					export const ResourceTypeEnum = {
 | 
				
			||||||
 | 
					    Machine: EnumValue.of(1, '机器').setExtra({ icon: 'Monitor', iconColor: 'var(--el-color-primary)' }).tagTypeSuccess(),
 | 
				
			||||||
 | 
					    Db: EnumValue.of(2, '数据库实例').setExtra({ icon: 'Coin', iconColor: 'var(--el-color-warning)' }).tagTypeWarning(),
 | 
				
			||||||
 | 
					    Redis: EnumValue.of(3, 'redis').setExtra({ icon: 'iconfont icon-redis', iconColor: 'var(--el-color-danger)' }).tagTypeInfo(),
 | 
				
			||||||
 | 
					    Mongo: EnumValue.of(4, 'mongo').setExtra({ icon: 'iconfont icon-mongo', iconColor: 'var(--el-color-success)' }).tagTypeDanger(),
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 标签关联的资源类型
 | 
				
			||||||
 | 
					export const TagResourceTypeEnum = {
 | 
				
			||||||
 | 
					    AuthCert: EnumValue.of(-2, '公共凭证').setExtra({ icon: 'Ticket' }),
 | 
				
			||||||
 | 
					    Tag: EnumValue.of(-1, '标签').setExtra({ icon: 'CollectionTag' }),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Machine: ResourceTypeEnum.Machine,
 | 
				
			||||||
 | 
					    Db: ResourceTypeEnum.Db,
 | 
				
			||||||
 | 
					    Redis: ResourceTypeEnum.Redis,
 | 
				
			||||||
 | 
					    Mongo: ResourceTypeEnum.Mongo,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    MachineAuthCert: EnumValue.of(11, '机器-授权凭证').setExtra({ icon: 'Ticket', iconColor: 'var(--el-color-success)' }),
 | 
				
			||||||
 | 
					    DbAuthCert: EnumValue.of(21, '数据库-授权凭证').setExtra({ icon: 'Ticket', iconColor: 'var(--el-color-success)' }),
 | 
				
			||||||
 | 
					    DbName: EnumValue.of(22, '数据库').setExtra({ icon: 'Coin' }),
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
@@ -15,7 +15,7 @@ const config = {
 | 
				
			|||||||
    baseWsUrl: `${(window as any).globalConfig.BaseWsUrl || `${location.protocol == 'https:' ? 'wss:' : 'ws:'}//${getBaseApiUrl()}`}/api`,
 | 
					    baseWsUrl: `${(window as any).globalConfig.BaseWsUrl || `${location.protocol == 'https:' ? 'wss:' : 'ws:'}//${getBaseApiUrl()}`}/api`,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // 系统版本
 | 
					    // 系统版本
 | 
				
			||||||
    version: 'v1.7.3',
 | 
					    version: 'v1.9.1',
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default config;
 | 
					export default config;
 | 
				
			||||||
							
								
								
									
										38
									
								
								frontend/src/common/crypto.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,38 @@
 | 
				
			|||||||
 | 
					import CryptoJS from 'crypto-js';
 | 
				
			||||||
 | 
					import { getToken } from '@/common/utils/storage';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * AES 加密数据
 | 
				
			||||||
 | 
					 * @param word
 | 
				
			||||||
 | 
					 * @param key
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function AesEncrypt(word: string, key?: string) {
 | 
				
			||||||
 | 
					    if (!key) {
 | 
				
			||||||
 | 
					        key = getToken().substring(0, 24);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const sKey = CryptoJS.enc.Utf8.parse(key);
 | 
				
			||||||
 | 
					    const encrypted = CryptoJS.AES.encrypt(word, sKey, {
 | 
				
			||||||
 | 
					        iv: sKey,
 | 
				
			||||||
 | 
					        mode: CryptoJS.mode.CBC,
 | 
				
			||||||
 | 
					        padding: CryptoJS.pad.Pkcs7,
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return encrypted.ciphertext.toString(CryptoJS.enc.Base64);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export function AesDecrypt(word: string, key?: string): string {
 | 
				
			||||||
 | 
					    if (!key) {
 | 
				
			||||||
 | 
					        key = getToken().substring(0, 24);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const sKey = CryptoJS.enc.Utf8.parse(key);
 | 
				
			||||||
 | 
					    // key 和 iv 使用同一个值
 | 
				
			||||||
 | 
					    const decrypted = CryptoJS.AES.decrypt(word, sKey, {
 | 
				
			||||||
 | 
					        iv: sKey,
 | 
				
			||||||
 | 
					        mode: CryptoJS.mode.CBC, // CBC算法
 | 
				
			||||||
 | 
					        padding: CryptoJS.pad.Pkcs7, //使用pkcs7 进行padding 后端需要注意
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return decrypted.toString(CryptoJS.enc.Base64);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -2,9 +2,11 @@ import request from './request';
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
export default {
 | 
					export default {
 | 
				
			||||||
    login: (param: any) => request.post('/auth/accounts/login', param),
 | 
					    login: (param: any) => request.post('/auth/accounts/login', param),
 | 
				
			||||||
 | 
					    refreshToken: (param: any) => request.get('/auth/accounts/refreshToken', param),
 | 
				
			||||||
    otpVerify: (param: any) => request.post('/auth/accounts/otp-verify', param),
 | 
					    otpVerify: (param: any) => request.post('/auth/accounts/otp-verify', param),
 | 
				
			||||||
    getPublicKey: () => request.get('/common/public-key'),
 | 
					    getPublicKey: () => request.get('/common/public-key'),
 | 
				
			||||||
    getConfigValue: (params: any) => request.get('/sys/configs/value', params),
 | 
					    getConfigValue: (params: any) => request.get('/sys/configs/value', params),
 | 
				
			||||||
 | 
					    getServerConf: () => request.get('/sys/configs/server'),
 | 
				
			||||||
    oauth2LoginConfig: () => request.get('/auth/oauth2-config'),
 | 
					    oauth2LoginConfig: () => request.get('/auth/oauth2-config'),
 | 
				
			||||||
    changePwd: (param: any) => request.post('/sys/accounts/change-pwd', param),
 | 
					    changePwd: (param: any) => request.post('/sys/accounts/change-pwd', param),
 | 
				
			||||||
    captcha: () => request.get('/sys/captcha'),
 | 
					    captcha: () => request.get('/sys/captcha'),
 | 
				
			||||||
@@ -13,4 +15,5 @@ export default {
 | 
				
			|||||||
    oauth2Callback: (params: any) => request.get('/auth/oauth2/callback', params),
 | 
					    oauth2Callback: (params: any) => request.get('/auth/oauth2/callback', params),
 | 
				
			||||||
    getLdapEnabled: () => request.get('/auth/ldap/enabled'),
 | 
					    getLdapEnabled: () => request.get('/auth/ldap/enabled'),
 | 
				
			||||||
    ldapLogin: (param: any) => request.post('/auth/ldap/login', param),
 | 
					    ldapLogin: (param: any) => request.post('/auth/ldap/login', param),
 | 
				
			||||||
 | 
					    getFileDetail: (keys: string[]) => request.get(`/sys/files/detail/${keys.join(',')}`),
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
							
								
								
									
										11
									
								
								frontend/src/common/pattern.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,11 @@
 | 
				
			|||||||
 | 
					import { i18n } from '@/i18n';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export const AccountUsernamePattern = {
 | 
				
			||||||
 | 
					    pattern: /^[a-zA-Z0-9_]{5,16}$/g,
 | 
				
			||||||
 | 
					    message: i18n.global.t('system.account.usernamePatternErrMsg'),
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export const ResourceCodePattern = {
 | 
				
			||||||
 | 
					    pattern: /^[a-zA-Z0-9_\-.:]{1,32}$/g,
 | 
				
			||||||
 | 
					    message: i18n.global.t('system.menu.resourceCodePatternErrMsg'),
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
@@ -38,6 +38,7 @@ export enum ResultEnum {
 | 
				
			|||||||
    PARAM_ERROR = 405,
 | 
					    PARAM_ERROR = 405,
 | 
				
			||||||
    SERVER_ERROR = 500,
 | 
					    SERVER_ERROR = 500,
 | 
				
			||||||
    NO_PERMISSION = 501,
 | 
					    NO_PERMISSION = 501,
 | 
				
			||||||
 | 
					    ACCESS_TOKEN_INVALID = 502, // accessToken失效
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const baseUrl: string = config.baseApiUrl;
 | 
					export const baseUrl: string = config.baseApiUrl;
 | 
				
			||||||
@@ -208,6 +209,36 @@ export function joinClientParams(): string {
 | 
				
			|||||||
    return `token=${getToken()}&clientId=${getClientId()}`;
 | 
					    return `token=${getToken()}&clientId=${getClientId()}`;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 获取文件url地址
 | 
				
			||||||
 | 
					 * @param key 文件key
 | 
				
			||||||
 | 
					 * @returns 文件url
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function getFileUrl(key: string) {
 | 
				
			||||||
 | 
					    return `${baseUrl}/sys/files/${key}`;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 获取系统文件上传url
 | 
				
			||||||
 | 
					 * @param key 文件key
 | 
				
			||||||
 | 
					 * @returns 文件上传url
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function getUploadFileUrl(key: string = '') {
 | 
				
			||||||
 | 
					    return `${baseUrl}/sys/files/upload?token=${getToken()}&fileKey=${key}`;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 下载文件
 | 
				
			||||||
 | 
					 * @param key 文件key
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function downloadFile(key: string) {
 | 
				
			||||||
 | 
					    const a = document.createElement('a');
 | 
				
			||||||
 | 
					    a.setAttribute('href', `${getFileUrl(key)}`);
 | 
				
			||||||
 | 
					    a.setAttribute('target', '_blank');
 | 
				
			||||||
 | 
					    a.click();
 | 
				
			||||||
 | 
					    a.remove();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function parseResult(result: Result) {
 | 
					function parseResult(result: Result) {
 | 
				
			||||||
    if (result.code === ResultEnum.SUCCESS) {
 | 
					    if (result.code === ResultEnum.SUCCESS) {
 | 
				
			||||||
        return result.data;
 | 
					        return result.data;
 | 
				
			||||||
@@ -73,6 +73,15 @@ export async function getMachineConfig(): Promise<any> {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 获取系统服务启动配置
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @returns 配置信息
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export async function getServerConf(): Promise<any> {
 | 
				
			||||||
 | 
					    return openApi.getServerConf();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * 获取系统配置值
 | 
					 * 获取系统配置值
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
@@ -1,9 +1,9 @@
 | 
				
			|||||||
import Config from './config';
 | 
					import Config from './config';
 | 
				
			||||||
import { ElNotification } from 'element-plus';
 | 
					import {ElNotification} from 'element-plus';
 | 
				
			||||||
import SocketBuilder from './SocketBuilder';
 | 
					import SocketBuilder from './SocketBuilder';
 | 
				
			||||||
import { getToken } from '@/common/utils/storage';
 | 
					import {getToken} from '@/common/utils/storage';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { joinClientParams } from './request';
 | 
					import {joinClientParams} from './request';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class SysSocket {
 | 
					class SysSocket {
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
@@ -19,10 +19,11 @@ class SysSocket {
 | 
				
			|||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * 消息类型
 | 
					     * 消息类型
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    messageTypes = {
 | 
					    messageTypes: any = {
 | 
				
			||||||
        0: 'error',
 | 
					        0: 'error',
 | 
				
			||||||
        1: 'success',
 | 
					        1: 'success',
 | 
				
			||||||
        2: 'info',
 | 
					        2: 'info',
 | 
				
			||||||
 | 
					        22: 'info',
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
@@ -57,12 +58,20 @@ class SysSocket {
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                const type = this.getMsgType(message.type);
 | 
					                const type = this.getMsgType(message.type);
 | 
				
			||||||
 | 
					                let msg = message.msg
 | 
				
			||||||
 | 
					                let duration = 0
 | 
				
			||||||
 | 
					                if (message.type == 22) {
 | 
				
			||||||
 | 
					                    let obj = JSON.parse(msg);
 | 
				
			||||||
 | 
					                    msg = `文件:${obj['title']} 执行成功: ${obj['executedStatements']} 条`
 | 
				
			||||||
 | 
					                    duration = 2000
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
                ElNotification({
 | 
					                ElNotification({
 | 
				
			||||||
                    duration: 0,
 | 
					                    duration: duration,
 | 
				
			||||||
                    title: message.title,
 | 
					                    title: message.title,
 | 
				
			||||||
                    message: message.msg,
 | 
					                    message: msg,
 | 
				
			||||||
                    type: type,
 | 
					                    type: type,
 | 
				
			||||||
                });
 | 
					                });
 | 
				
			||||||
 | 
					                console.log(message)
 | 
				
			||||||
            })
 | 
					            })
 | 
				
			||||||
            .open((event: any) => console.log(event))
 | 
					            .open((event: any) => console.log(event))
 | 
				
			||||||
            .close(() => {
 | 
					            .close(() => {
 | 
				
			||||||
@@ -7,24 +7,22 @@ export function exportCsv(filename: string, columns: string[], datas: []) {
 | 
				
			|||||||
        for (let column of columns) {
 | 
					        for (let column of columns) {
 | 
				
			||||||
            let val: any = data[column];
 | 
					            let val: any = data[column];
 | 
				
			||||||
            if (val == null || val == undefined) {
 | 
					            if (val == null || val == undefined) {
 | 
				
			||||||
                dataValueArr.push('');
 | 
					                val = '';
 | 
				
			||||||
                continue;
 | 
					            } else if (val && typeof val == 'string') {
 | 
				
			||||||
            }
 | 
					                // 替换换行符
 | 
				
			||||||
 | 
					                val = val.replace(/[\r\n]/g, '\\n');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (typeof val == 'string' && val) {
 | 
					 | 
				
			||||||
                // csv格式如果有逗号,整体用双引号括起来;如果里面还有双引号就替换成两个双引号,这样导出来的格式就不会有问题了
 | 
					                // csv格式如果有逗号,整体用双引号括起来;如果里面还有双引号就替换成两个双引号,这样导出来的格式就不会有问题了
 | 
				
			||||||
                if (val.indexOf(',') != -1) {
 | 
					                if (val.indexOf(',') != -1) {
 | 
				
			||||||
                    // 如果还有双引号,先将双引号转义,避免两边加了双引号后转义错误
 | 
					                    // 如果还有双引号,先将双引号转义,避免两边加了双引号后转义错误
 | 
				
			||||||
                    if (val.indexOf('"') != -1) {
 | 
					                    if (val.indexOf('"') != -1) {
 | 
				
			||||||
                        val = val.replace(/\"/g, '""');
 | 
					                        val = val.replace(/"/g, '""');
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                    // 再将逗号转义
 | 
					                    // 再将逗号转义
 | 
				
			||||||
                    val = `"${val}"`;
 | 
					                    val = `"${val}"`;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                dataValueArr.push(val + '\t');
 | 
					 | 
				
			||||||
            } else {
 | 
					 | 
				
			||||||
                dataValueArr.push(val + '\t');
 | 
					 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					            dataValueArr.push(String(val));
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        cvsData.push(dataValueArr);
 | 
					        cvsData.push(dataValueArr);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
							
								
								
									
										116
									
								
								frontend/src/common/utils/format.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,116 @@
 | 
				
			|||||||
 | 
					import dayjs from 'dayjs';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 格式化日期
 | 
				
			||||||
 | 
					 * @param date 日期 字符串 Date 时间戳等
 | 
				
			||||||
 | 
					 * @param format 格式化格式  默认 YYYY-MM-DD HH:mm:ss
 | 
				
			||||||
 | 
					 * @returns 格式化后内容
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function formatDate(date: any, format: string = 'YYYY-MM-DD HH:mm:ss') {
 | 
				
			||||||
 | 
					    if (!date) {
 | 
				
			||||||
 | 
					        return '';
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    return dayjs(date).format(format);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 格式化字节单位
 | 
				
			||||||
 | 
					 * @param size byte size
 | 
				
			||||||
 | 
					 * @returns
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function formatByteSize(size: number, fixed = 2) {
 | 
				
			||||||
 | 
					    if (size === 0) {
 | 
				
			||||||
 | 
					        return '0B';
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
 | 
				
			||||||
 | 
					    const base = 1024;
 | 
				
			||||||
 | 
					    const exponent = Math.floor(Math.log(size) / Math.log(base));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return parseFloat((size / Math.pow(base, exponent)).toFixed(fixed)) + units[exponent];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 容量转为对应的字节大小,如 1KB转为 1024
 | 
				
			||||||
 | 
					 * @param sizeString  1kb 1gb等
 | 
				
			||||||
 | 
					 * @returns
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function convertToBytes(sizeStr: string) {
 | 
				
			||||||
 | 
					    sizeStr = sizeStr.trim();
 | 
				
			||||||
 | 
					    const unit = sizeStr.slice(-2);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const valueStr = sizeStr.slice(0, -2);
 | 
				
			||||||
 | 
					    const value = parseInt(valueStr, 10);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    let bytes = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    switch (unit.toUpperCase()) {
 | 
				
			||||||
 | 
					        case 'KB':
 | 
				
			||||||
 | 
					            bytes = value * 1024;
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        case 'MB':
 | 
				
			||||||
 | 
					            bytes = value * 1024 * 1024;
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        case 'GB':
 | 
				
			||||||
 | 
					            bytes = value * 1024 * 1024 * 1024;
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        default:
 | 
				
			||||||
 | 
					            throw new Error('Invalid size unit');
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return bytes;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 格式化指定时间数为人性化可阅读的内容(默认time为秒单位)
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param time 时间数
 | 
				
			||||||
 | 
					 * @param unit time对应的单位
 | 
				
			||||||
 | 
					 * @returns
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function formatTime(time: number, unit: string = 's') {
 | 
				
			||||||
 | 
					    const units: any = {
 | 
				
			||||||
 | 
					        y: 31536000,
 | 
				
			||||||
 | 
					        M: 2592000,
 | 
				
			||||||
 | 
					        d: 86400,
 | 
				
			||||||
 | 
					        h: 3600,
 | 
				
			||||||
 | 
					        m: 60,
 | 
				
			||||||
 | 
					        s: 1,
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (!units[unit]) {
 | 
				
			||||||
 | 
					        return 'Invalid unit';
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    let seconds = time * units[unit];
 | 
				
			||||||
 | 
					    let result = '';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const timeUnits = Object.entries(units).map(([unit, duration]) => {
 | 
				
			||||||
 | 
					        const value = Math.floor(seconds / duration);
 | 
				
			||||||
 | 
					        seconds %= duration;
 | 
				
			||||||
 | 
					        return { value, unit };
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    timeUnits.forEach(({ value, unit }) => {
 | 
				
			||||||
 | 
					        if (value > 0) {
 | 
				
			||||||
 | 
					            result += `${value}${unit} `;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return result;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * formatAxis(new Date())   // 上午好
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function formatAxis(param: any) {
 | 
				
			||||||
 | 
					    let hour: number = new Date(param).getHours();
 | 
				
			||||||
 | 
					    if (hour < 6) return '凌晨好';
 | 
				
			||||||
 | 
					    else if (hour < 9) return '早上好';
 | 
				
			||||||
 | 
					    else if (hour < 12) return '上午好';
 | 
				
			||||||
 | 
					    else if (hour < 14) return '中午好';
 | 
				
			||||||
 | 
					    else if (hour < 17) return '下午好';
 | 
				
			||||||
 | 
					    else if (hour < 19) return '傍晚好';
 | 
				
			||||||
 | 
					    else if (hour < 22) return '晚上好';
 | 
				
			||||||
 | 
					    else return '夜里好';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										56
									
								
								frontend/src/common/utils/object.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,56 @@
 | 
				
			|||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 根据对象访问路径,获取对应的值
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param obj 对象,如 {user: {name: 'xxx'}, orderNo: 1212211, products: [{id: 12}]}
 | 
				
			||||||
 | 
					 * @param path 访问路径,如 orderNo 或者 user.name 或者product[0].id
 | 
				
			||||||
 | 
					 * @returns 路径对应的值
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function getValueByPath(obj: any, path: string) {
 | 
				
			||||||
 | 
					    const keys = path.split('.');
 | 
				
			||||||
 | 
					    let result = obj;
 | 
				
			||||||
 | 
					    for (let key of keys) {
 | 
				
			||||||
 | 
					        if (!result) {
 | 
				
			||||||
 | 
					            return undefined;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        // 如果是字符串,则尝试使用json解析
 | 
				
			||||||
 | 
					        if (typeof result == 'string') {
 | 
				
			||||||
 | 
					            try {
 | 
				
			||||||
 | 
					                result = JSON.parse(result);
 | 
				
			||||||
 | 
					            } catch (e) {
 | 
				
			||||||
 | 
					                console.error(e);
 | 
				
			||||||
 | 
					                return undefined;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        if (typeof result !== 'object') {
 | 
				
			||||||
 | 
					            return undefined;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (key.includes('[') && key.includes(']')) {
 | 
				
			||||||
 | 
					            // 处理包含数组索引的情况
 | 
				
			||||||
 | 
					            const arrayKey = key.substring(0, key.indexOf('['));
 | 
				
			||||||
 | 
					            const matchIndex = key.match(/\[(.*?)\]/);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            if (!matchIndex) {
 | 
				
			||||||
 | 
					                return undefined;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            const index = parseInt(matchIndex[1]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            let arrValue = result[arrayKey];
 | 
				
			||||||
 | 
					            if (typeof arrValue == 'string') {
 | 
				
			||||||
 | 
					                try {
 | 
				
			||||||
 | 
					                    arrValue = JSON.parse(arrValue);
 | 
				
			||||||
 | 
					                } catch (e) {
 | 
				
			||||||
 | 
					                    result = undefined;
 | 
				
			||||||
 | 
					                    break;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            result = Array.isArray(arrValue) ? arrValue[index] : undefined;
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					            result = result[key];
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return result;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -1,6 +1,7 @@
 | 
				
			|||||||
import { randomUuid } from './string';
 | 
					import { randomUuid } from './string';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const TokenKey = 'm-token';
 | 
					const TokenKey = 'm-token';
 | 
				
			||||||
 | 
					const RefreshTokenKey = 'm-refresh-token';
 | 
				
			||||||
const UserKey = 'm-user';
 | 
					const UserKey = 'm-user';
 | 
				
			||||||
const TagViewsKey = 'm-tagViews';
 | 
					const TagViewsKey = 'm-tagViews';
 | 
				
			||||||
const ClientIdKey = 'm-clientId';
 | 
					const ClientIdKey = 'm-clientId';
 | 
				
			||||||
@@ -15,6 +16,14 @@ export function saveToken(token: string) {
 | 
				
			|||||||
    setLocal(TokenKey, token);
 | 
					    setLocal(TokenKey, token);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export function getRefreshToken(): string {
 | 
				
			||||||
 | 
					    return getLocal(RefreshTokenKey);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export function saveRefreshToken(refreshToken: string) {
 | 
				
			||||||
 | 
					    return setLocal(RefreshTokenKey, refreshToken);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// 获取登录用户基础信息
 | 
					// 获取登录用户基础信息
 | 
				
			||||||
export function getUser() {
 | 
					export function getUser() {
 | 
				
			||||||
    return getLocal(UserKey);
 | 
					    return getLocal(UserKey);
 | 
				
			||||||
@@ -39,6 +48,7 @@ export function getThemeConfig() {
 | 
				
			|||||||
export function clearUser() {
 | 
					export function clearUser() {
 | 
				
			||||||
    removeLocal(TokenKey);
 | 
					    removeLocal(TokenKey);
 | 
				
			||||||
    removeLocal(UserKey);
 | 
					    removeLocal(UserKey);
 | 
				
			||||||
 | 
					    removeLocal(RefreshTokenKey);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function getTagViews() {
 | 
					export function getTagViews() {
 | 
				
			||||||
@@ -97,43 +97,6 @@ export function getTextWidth(str: string) {
 | 
				
			|||||||
    return width;
 | 
					    return width;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					 | 
				
			||||||
 * 获取内容所需要占用的宽度
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
export function getContentWidth(content: any): number {
 | 
					 | 
				
			||||||
    if (!content) {
 | 
					 | 
				
			||||||
        return 50;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    // 以下分配的单位长度可根据实际需求进行调整
 | 
					 | 
				
			||||||
    let flexWidth = 0;
 | 
					 | 
				
			||||||
    for (const char of content) {
 | 
					 | 
				
			||||||
        if (flexWidth > 500) {
 | 
					 | 
				
			||||||
            break;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if ((char >= '0' && char <= '9') || (char >= 'a' && char <= 'z')) {
 | 
					 | 
				
			||||||
            // 小写字母、数字字符
 | 
					 | 
				
			||||||
            flexWidth += 9.3;
 | 
					 | 
				
			||||||
            continue;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (char >= 'A' && char <= 'Z') {
 | 
					 | 
				
			||||||
            flexWidth += 9;
 | 
					 | 
				
			||||||
            continue;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (char >= '\u4e00' && char <= '\u9fa5') {
 | 
					 | 
				
			||||||
            // 如果是中文字符,为字符分配16个单位宽度
 | 
					 | 
				
			||||||
            flexWidth += 20;
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
            // 其他种类字符
 | 
					 | 
				
			||||||
            flexWidth += 8;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    // if (flexWidth > 450) {
 | 
					 | 
				
			||||||
    //     // 设置最大宽度
 | 
					 | 
				
			||||||
    //     flexWidth = 450;
 | 
					 | 
				
			||||||
    // }
 | 
					 | 
				
			||||||
    return flexWidth;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * @returns uuid
 | 
					 * @returns uuid
 | 
				
			||||||
@@ -179,3 +142,75 @@ export async function copyToClipboard(txt: string, selector: string = '#copyValu
 | 
				
			|||||||
        clipboard.destroy();
 | 
					        clipboard.destroy();
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export function fuzzyMatchField(keyword: string, fields: any[], ...valueExtractFuncs: Function[]) {
 | 
				
			||||||
 | 
					    keyword = keyword?.toLowerCase();
 | 
				
			||||||
 | 
					    return fields.filter((field) => {
 | 
				
			||||||
 | 
					        for (let valueExtractFunc of valueExtractFuncs) {
 | 
				
			||||||
 | 
					            const value = valueExtractFunc(field)?.toLowerCase();
 | 
				
			||||||
 | 
					            if (isPrefixSubsequence(keyword, value)) {
 | 
				
			||||||
 | 
					                return true;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        return false;
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * 匹配是否为前缀子序列 targetTemplate=username prefix=uname -> true,prefix=uname2 -> false
 | 
				
			||||||
 | 
					 * @param prefix 字符串前缀(不连续也可以,但不改变字符的相对顺序)
 | 
				
			||||||
 | 
					 * @param targetTemplate 目标模板
 | 
				
			||||||
 | 
					 * @returns 是否匹配
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function isPrefixSubsequence(prefix: string, targetTemplate: string) {
 | 
				
			||||||
 | 
					    let i = 0; // 指向prefix的索引
 | 
				
			||||||
 | 
					    let j = 0; // 指向targetTemplate的索引
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    while (i < prefix.length && j < targetTemplate.length) {
 | 
				
			||||||
 | 
					        if (prefix[i] === targetTemplate[j]) {
 | 
				
			||||||
 | 
					            // 字符匹配,两个指针都向前移动
 | 
				
			||||||
 | 
					            i++;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        j++; // 目标字符串指针始终向前移动
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // 如果prefix的所有字符都被找到,返回true
 | 
				
			||||||
 | 
					    return i === prefix.length;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 *  生成随机密码
 | 
				
			||||||
 | 
					 * @param length 密码长度
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					export function randomPassword(length = 10) {
 | 
				
			||||||
 | 
					    const lowerCase = 'abcdefghijklmnopqrstuvwxyz';
 | 
				
			||||||
 | 
					    const upperCase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
 | 
				
			||||||
 | 
					    const numbers = '0123456789';
 | 
				
			||||||
 | 
					    const specialChars = '!@#$%^&*()-_=+[]{}|;:,.<>?';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // 确保每个类别至少包含一个字符
 | 
				
			||||||
 | 
					    let password = [getRandomChar(lowerCase), getRandomChar(upperCase), getRandomChar(numbers), getRandomChar(specialChars)];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // 剩余字符从所有字符集中随机选择
 | 
				
			||||||
 | 
					    const allChars = lowerCase + upperCase + numbers + specialChars;
 | 
				
			||||||
 | 
					    for (let i = 4; i < length; i++) {
 | 
				
			||||||
 | 
					        password.push(getRandomChar(allChars));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // 打乱数组顺序以增加随机性
 | 
				
			||||||
 | 
					    shuffleArray(password);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return password.join('');
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function getRandomChar(charSet: string) {
 | 
				
			||||||
 | 
					    const randomIndex = Math.floor(Math.random() * charSet.length);
 | 
				
			||||||
 | 
					    return charSet[randomIndex];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function shuffleArray(array: string[]) {
 | 
				
			||||||
 | 
					    for (let i = array.length - 1; i > 0; i--) {
 | 
				
			||||||
 | 
					        const j = Math.floor(Math.random() * (i + 1));
 | 
				
			||||||
 | 
					        [array[i], array[j]] = [array[j], array[i]];
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -4,6 +4,7 @@ export interface ViteEnv {
 | 
				
			|||||||
    VITE_PORT: number;
 | 
					    VITE_PORT: number;
 | 
				
			||||||
    VITE_OPEN: boolean;
 | 
					    VITE_OPEN: boolean;
 | 
				
			||||||
    VITE_PUBLIC_PATH: string;
 | 
					    VITE_PUBLIC_PATH: string;
 | 
				
			||||||
 | 
					    VITE_EDITOR: string;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function loadEnv(): ViteEnv {
 | 
					export function loadEnv(): ViteEnv {
 | 
				
			||||||
@@ -16,7 +16,7 @@
 | 
				
			|||||||
                :is="`el-option`"
 | 
					                :is="`el-option`"
 | 
				
			||||||
                v-for="(col, index) in item.options"
 | 
					                v-for="(col, index) in item.options"
 | 
				
			||||||
                :key="index"
 | 
					                :key="index"
 | 
				
			||||||
                :label="col[fieldNames.label]"
 | 
					                :label="$t(col[fieldNames.label])"
 | 
				
			||||||
                :value="col[fieldNames.value]"
 | 
					                :value="col[fieldNames.value]"
 | 
				
			||||||
            ></component>
 | 
					            ></component>
 | 
				
			||||||
        </template>
 | 
					        </template>
 | 
				
			||||||
@@ -28,6 +28,9 @@
 | 
				
			|||||||
<script setup lang="ts" name="SearchFormItem">
 | 
					<script setup lang="ts" name="SearchFormItem">
 | 
				
			||||||
import { computed } from 'vue';
 | 
					import { computed } from 'vue';
 | 
				
			||||||
import { SearchItem } from '../index';
 | 
					import { SearchItem } from '../index';
 | 
				
			||||||
 | 
					import { useI18n } from 'vue-i18n';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const { t } = useI18n();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
interface SearchFormItemProps {
 | 
					interface SearchFormItemProps {
 | 
				
			||||||
    item: SearchItem;
 | 
					    item: SearchItem;
 | 
				
			||||||
@@ -70,7 +73,7 @@ const handleEvents = computed(() => {
 | 
				
			|||||||
// 处理默认 placeholder
 | 
					// 处理默认 placeholder
 | 
				
			||||||
const placeholder = computed(() => {
 | 
					const placeholder = computed(() => {
 | 
				
			||||||
    const search = props.item;
 | 
					    const search = props.item;
 | 
				
			||||||
    const label = search.label;
 | 
					    const label = t(search.label);
 | 
				
			||||||
    if (['datetimerange', 'daterange', 'monthrange'].includes(search?.props?.type) || search?.props?.isRange) {
 | 
					    if (['datetimerange', 'daterange', 'monthrange'].includes(search?.props?.type) || search?.props?.isRange) {
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            rangeSeparator: search?.props?.rangeSeparator ?? '至',
 | 
					            rangeSeparator: search?.props?.rangeSeparator ?? '至',
 | 
				
			||||||
@@ -78,7 +81,9 @@ const placeholder = computed(() => {
 | 
				
			|||||||
            endPlaceholder: search?.props?.endPlaceholder ?? '结束时间',
 | 
					            endPlaceholder: search?.props?.endPlaceholder ?? '结束时间',
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    const placeholder = search?.props?.placeholder ?? (search?.type?.includes('input') ? `请输入${label}` : `请选择${label}`);
 | 
					
 | 
				
			||||||
    return { placeholder };
 | 
					    const placeholder =
 | 
				
			||||||
 | 
					        search?.props?.placeholder ?? (search?.type?.includes('input') ? t('common.pleaseInput', { label }) : t('common.pleaseSelect', { label }));
 | 
				
			||||||
 | 
					    return { placeholder: t(placeholder) };
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
@@ -83,7 +83,7 @@ const breakPoint = computed<BreakPoint>(() => gridRef.value?.breakPoint);
 | 
				
			|||||||
// 判断是否显示 展开/合并 按钮
 | 
					// 判断是否显示 展开/合并 按钮
 | 
				
			||||||
const showCollapse = computed(() => {
 | 
					const showCollapse = computed(() => {
 | 
				
			||||||
    let show = false;
 | 
					    let show = false;
 | 
				
			||||||
    props.items.reduce((prev, current) => {
 | 
					    props.items.reduce((prev, current: any) => {
 | 
				
			||||||
        prev += (current![breakPoint.value]?.span ?? current?.span ?? 1) + (current![breakPoint.value]?.offset ?? current?.offset ?? 0);
 | 
					        prev += (current![breakPoint.value]?.span ?? current?.span ?? 1) + (current![breakPoint.value]?.offset ?? current?.offset ?? 0);
 | 
				
			||||||
        if (typeof props.searchCol !== 'number') {
 | 
					        if (typeof props.searchCol !== 'number') {
 | 
				
			||||||
            if (prev >= props.searchCol[breakPoint.value]) show = true;
 | 
					            if (prev >= props.searchCol[breakPoint.value]) show = true;
 | 
				
			||||||
@@ -14,11 +14,11 @@ export function hasPerm(code: string) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * 判断用户是否拥有权限对象里对应的code
 | 
					 * 判断用户是否拥有权限对象里对应的code
 | 
				
			||||||
 * @param perms { save: "xxx:save"}
 | 
					 | 
				
			||||||
 * @returns {"xxx:save": true}  key->permission code
 | 
					 * @returns {"xxx:save": true}  key->permission code
 | 
				
			||||||
 | 
					 * @param permCodes
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
export function hasPerms(permCodes: any[]) {
 | 
					export function hasPerms(permCodes: any[]) {
 | 
				
			||||||
    const res = {};
 | 
					    const res = {} as { [key: string]: boolean };
 | 
				
			||||||
    for (let permCode of permCodes) {
 | 
					    for (let permCode of permCodes) {
 | 
				
			||||||
        if (hasPerm(permCode)) {
 | 
					        if (hasPerm(permCode)) {
 | 
				
			||||||
            res[permCode] = true;
 | 
					            res[permCode] = true;
 | 
				
			||||||
@@ -22,7 +22,7 @@
 | 
				
			|||||||
                        @click="onCurrentContextmenuClick(v)"
 | 
					                        @click="onCurrentContextmenuClick(v)"
 | 
				
			||||||
                    >
 | 
					                    >
 | 
				
			||||||
                        <SvgIcon :name="v.icon" />
 | 
					                        <SvgIcon :name="v.icon" />
 | 
				
			||||||
                        <span>{{ v.txt }}</span>
 | 
					                        <span>{{ $t(v.txt) }}</span>
 | 
				
			||||||
                    </li>
 | 
					                    </li>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
            </ul>
 | 
					            </ul>
 | 
				
			||||||
@@ -1,44 +1,47 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <div class="crontab">
 | 
					    <div class="crontab">
 | 
				
			||||||
        <el-tabs v-model="state.activeName" @tab-change="changeTab(state.activeName)" type="border-card">
 | 
					        <el-tabs v-model="state.activeName" @tab-change="changeTab(state.activeName)" type="border-card">
 | 
				
			||||||
            <el-tab-pane label="秒" name="second" v-if="shouldHide('second')">
 | 
					            <el-tab-pane :label="$t('components.crontab.second')" name="second" v-if="shouldHide('second')">
 | 
				
			||||||
                <CrontabSecond :cron="crontabValueObj" ref="secondRef" />
 | 
					                <CrontabSecond :cron="crontabValueObj" ref="secondRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-tab-pane label="分钟" name="min" v-if="shouldHide('min')">
 | 
					            <el-tab-pane :label="$t('components.crontab.minute')" name="min" v-if="shouldHide('min')">
 | 
				
			||||||
                <CrontabMin :cron="crontabValueObj" ref="minRef" />
 | 
					                <CrontabMin :cron="crontabValueObj" ref="minRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-tab-pane label="小时" name="hour" v-if="shouldHide('hour')">
 | 
					            <el-tab-pane :label="$t('components.crontab.hour')" name="hour" v-if="shouldHide('hour')">
 | 
				
			||||||
                <CrontabHour :cron="crontabValueObj" ref="hourRef" />
 | 
					                <CrontabHour :cron="crontabValueObj" ref="hourRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-tab-pane label="日" name="day" v-if="shouldHide('day')">
 | 
					            <el-tab-pane :label="$t('components.crontab.day')" name="day" v-if="shouldHide('day')">
 | 
				
			||||||
                <CrontabDay :cron="crontabValueObj" ref="dayRef" />
 | 
					                <CrontabDay :cron="crontabValueObj" ref="dayRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-tab-pane label="月" name="mouth" v-if="shouldHide('mouth')">
 | 
					            <el-tab-pane :label="$t('components.crontab.month')" name="mouth" v-if="shouldHide('mouth')">
 | 
				
			||||||
                <CrontabMouth :cron="crontabValueObj" ref="mouthRef" />
 | 
					                <CrontabMouth :cron="crontabValueObj" ref="mouthRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-tab-pane label="周" name="week" v-if="shouldHide('week')">
 | 
					            <el-tab-pane :label="$t('components.crontab.week')" name="week" v-if="shouldHide('week')">
 | 
				
			||||||
                <CrontabWeek :cron="crontabValueObj" ref="weekRef" />
 | 
					                <CrontabWeek :cron="crontabValueObj" ref="weekRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-tab-pane label="年" name="year" v-if="shouldHide('year')">
 | 
					            <el-tab-pane :label="$t('components.crontab.year')" name="year" v-if="shouldHide('year')">
 | 
				
			||||||
                <CrontabYear :cron="crontabValueObj" ref="yearRef" />
 | 
					                <CrontabYear :cron="crontabValueObj" ref="yearRef" />
 | 
				
			||||||
            </el-tab-pane>
 | 
					            </el-tab-pane>
 | 
				
			||||||
        </el-tabs>
 | 
					        </el-tabs>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div class="popup-main">
 | 
					        <div class="popup-main">
 | 
				
			||||||
            <div class="popup-result">
 | 
					            <div class="popup-result">
 | 
				
			||||||
                <p class="title">时间表达式</p>
 | 
					                <p class="title">{{ $t('components.crontab.timeExpression') }}</p>
 | 
				
			||||||
                <table>
 | 
					                <table>
 | 
				
			||||||
                    <thead>
 | 
					                    <thead>
 | 
				
			||||||
 | 
					                        <tr>
 | 
				
			||||||
                            <th v-for="item of tabTitles" width="40" :key="item">{{ item }}</th>
 | 
					                            <th v-for="item of tabTitles" width="40" :key="item">{{ item }}</th>
 | 
				
			||||||
                        <th>crontab完整表达式</th>
 | 
					                            <th>{{ $t('components.crontab.crontabCompleteExpression') }}</th>
 | 
				
			||||||
 | 
					                        </tr>
 | 
				
			||||||
                    </thead>
 | 
					                    </thead>
 | 
				
			||||||
                    <tbody>
 | 
					                    <tbody>
 | 
				
			||||||
 | 
					                        <tr>
 | 
				
			||||||
                            <td>
 | 
					                            <td>
 | 
				
			||||||
                                <span>{{ crontabValueObj.second }}</span>
 | 
					                                <span>{{ crontabValueObj.second }}</span>
 | 
				
			||||||
                            </td>
 | 
					                            </td>
 | 
				
			||||||
@@ -61,17 +64,18 @@
 | 
				
			|||||||
                                <span>{{ crontabValueObj.year }}</span>
 | 
					                                <span>{{ crontabValueObj.year }}</span>
 | 
				
			||||||
                            </td>
 | 
					                            </td>
 | 
				
			||||||
                            <td>
 | 
					                            <td>
 | 
				
			||||||
                            <span>{{ contabValueString }}</span>
 | 
					                                <span>{{ crontabValueString }}</span>
 | 
				
			||||||
                            </td>
 | 
					                            </td>
 | 
				
			||||||
 | 
					                        </tr>
 | 
				
			||||||
                    </tbody>
 | 
					                    </tbody>
 | 
				
			||||||
                </table>
 | 
					                </table>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
            <CrontabResult :ex="contabValueString"></CrontabResult>
 | 
					            <CrontabResult :ex="crontabValueString"></CrontabResult>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <div class="pop_btn">
 | 
					            <div class="pop_btn">
 | 
				
			||||||
                <el-button size="small" @click="hidePopup">取消</el-button>
 | 
					                <el-button size="small" @click="hidePopup">{{ $t('common.cancel') }}</el-button>
 | 
				
			||||||
                <el-button size="small" type="warning" @click="clearCron">重置</el-button>
 | 
					                <el-button size="small" type="warning" @click="clearCron">{{ $t('common.reset') }}</el-button>
 | 
				
			||||||
                <el-button size="small" type="primary" @click="submitFill">确定</el-button>
 | 
					                <el-button size="small" type="primary" @click="submitFill">{{ $t('common.confirm') }}</el-button>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@@ -202,7 +206,7 @@ function hidePopup() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// 填充表达式
 | 
					// 填充表达式
 | 
				
			||||||
const submitFill = () => {
 | 
					const submitFill = () => {
 | 
				
			||||||
    emit('fill', contabValueString.value);
 | 
					    emit('fill', crontabValueString.value);
 | 
				
			||||||
    hidePopup();
 | 
					    hidePopup();
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -220,7 +224,7 @@ const clearCron = () => {
 | 
				
			|||||||
    changeTab(state.activeName);
 | 
					    changeTab(state.activeName);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const contabValueString = computed(() => {
 | 
					const crontabValueString = computed(() => {
 | 
				
			||||||
    let obj = state.crontabValueObj;
 | 
					    let obj = state.crontabValueObj;
 | 
				
			||||||
    let str = obj.second + ' ' + obj.min + ' ' + obj.hour + ' ' + obj.day + ' ' + obj.mouth + ' ' + obj.week + (obj.year == '' ? '' : ' ' + obj.year);
 | 
					    let str = obj.second + ' ' + obj.min + ' ' + obj.hour + ' ' + obj.day + ' ' + obj.mouth + ' ' + obj.week + (obj.year == '' ? '' : ' ' + obj.year);
 | 
				
			||||||
    return str;
 | 
					    return str;
 | 
				
			||||||
@@ -1,42 +1,45 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="1"> 日,允许的通配符[, - * / L M] </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="1"> {{ $t('components.crontab.day') }},{{ $t('components.crontab.dayCrontype1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="2"> 不指定 </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="2"> {{ $t('components.crontab.crontype2') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="3">
 | 
					            <el-radio v-model="radioValue" :label="3">
 | 
				
			||||||
                周期从
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="0" :max="31" /> - <el-input-number v-model="cycle02" :min="0" :max="31" /> 日
 | 
					                <el-input-number v-model="cycle01" :min="0" :max="31" /> - <el-input-number v-model="cycle02" :min="0" :max="31" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.day') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="4">
 | 
					            <el-radio v-model="radioValue" :label="4">
 | 
				
			||||||
                从
 | 
					                {{ $t('components.crontab.crontypeFrom') }}
 | 
				
			||||||
                <el-input-number v-model="average01" :min="0" :max="31" /> 号开始,每 <el-input-number v-model="average02" :min="0" :max="31" /> 日执行一次
 | 
					                <el-input-number v-model="average01" :min="0" :max="31" /> {{ $t('components.crontab.crontypeStartDay') }},
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeEvery') }} <el-input-number v-model="average02" :min="0" :max="31" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeExecDay') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <!-- <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="5">
 | 
					            <el-radio v-model="radioValue" :label="5">
 | 
				
			||||||
                每月
 | 
					                每月
 | 
				
			||||||
                <el-input-number v-model="workday" :min="0" :max="31" /> 号最近的那个工作日
 | 
					                <el-input-number v-model="workday" :min="0" :max="31" /> 号最近的那个工作日
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item> -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="6"> 本月最后一天 </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="6"> {{ $t('components.crontab.monthLastDay') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="7" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="7" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 7" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 7" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="item in 31" :key="item" :value="`${item}`">{{ item }}</el-option>
 | 
					                    <el-option v-for="item in 31" :key="item" :value="`${item}`">{{ item }}</el-option>
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
@@ -1,27 +1,30 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="1"> 小时,允许的通配符[, - * /] </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="1"> {{ $t('components.crontab.hour') }},{{ $t('components.crontab.hourCronType1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="2">
 | 
					            <el-radio v-model="radioValue" :label="2">
 | 
				
			||||||
                周期从
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" /> 小时
 | 
					                <el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.hour') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="3">
 | 
					            <el-radio v-model="radioValue" :label="3">
 | 
				
			||||||
                从
 | 
					                {{ $t('components.crontab.crontypeFrom') }}
 | 
				
			||||||
                <el-input-number v-model="average01" :min="0" :max="60" /> 小时开始,每 <el-input-number v-model="average02" :min="0" :max="60" /> 小时执行一次
 | 
					                <el-input-number v-model="average01" :min="0" :max="60" /> {{ $t('components.crontab.crontypeStartHour') }},
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeEvery') }} <el-input-number v-model="average02" :min="0" :max="60" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeExecHour') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="4" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="4" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="item in 60" :key="item" :value="`${item - 1}`">{{ item - 1 }}</el-option>
 | 
					                    <el-option v-for="item in 60" :key="item" :value="`${item - 1}`">{{ item - 1 }}</el-option>
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
@@ -1,10 +1,10 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-input v-model="cron" placeholder="可点击左边按钮配置">
 | 
					    <el-input v-model="cron" :placeholder="$t('components.crontab.crontabInputPlaceholder')">
 | 
				
			||||||
        <template #prepend>
 | 
					        <template #prepend>
 | 
				
			||||||
            <el-button @click="showCron = true" icon="Pointer"></el-button>
 | 
					            <el-button @click="showCron = true" icon="Pointer"></el-button>
 | 
				
			||||||
        </template>
 | 
					        </template>
 | 
				
			||||||
    </el-input>
 | 
					    </el-input>
 | 
				
			||||||
    <el-dialog title="生成 cron" v-model="showCron" width="600px">
 | 
					    <el-dialog :title="$t('components.crontab.crontabTitle')" v-model="showCron" width="660px">
 | 
				
			||||||
        <Crontab :expression="cron" @hide="showCron = false" @fill="(ex: any) => (cron = ex)" />
 | 
					        <Crontab :expression="cron" @hide="showCron = false" @fill="(ex: any) => (cron = ex)" />
 | 
				
			||||||
    </el-dialog>
 | 
					    </el-dialog>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
@@ -1,27 +1,30 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="1"> 分钟,允许的通配符[, - * /] </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="1"> {{ $t('components.crontab.minute') }},{{ $t('components.crontab.hourCronType1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="2">
 | 
					            <el-radio v-model="radioValue" :label="2">
 | 
				
			||||||
                周期从
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" /> 分钟
 | 
					                <el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.minute') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="3">
 | 
					            <el-radio v-model="radioValue" :label="3">
 | 
				
			||||||
                从
 | 
					                {{ $t('components.crontab.crontypeFrom') }}
 | 
				
			||||||
                <el-input-number v-model="average01" :min="0" :max="60" /> 分钟开始,每 <el-input-number v-model="average02" :min="0" :max="60" /> 分钟执行一次
 | 
					                <el-input-number v-model="average01" :min="0" :max="60" /> {{ $t('components.crontab.crontypeStartMin') }},
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeEvery') }} <el-input-number v-model="average02" :min="0" :max="60" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeExecMin') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="4" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="4" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="item in 60" :key="item" :value="`${item - 1}`">{{ item - 1 }}</el-option>
 | 
					                    <el-option v-for="item in 60" :key="item" :value="`${item - 1}`">{{ item - 1 }}</el-option>
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
@@ -1,27 +1,30 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="1"> 月,允许的通配符[, - * /] </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="1"> {{ $t('components.crontab.month') }},{{ $t('components.crontab.hourCronType1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="2">
 | 
					            <el-radio v-model="radioValue" :label="2">
 | 
				
			||||||
                周期从
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="1" :max="12" /> - <el-input-number v-model="cycle02" :min="1" :max="12" /> 月
 | 
					                <el-input-number v-model="cycle01" :min="1" :max="12" /> - <el-input-number v-model="cycle02" :min="1" :max="12" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.month') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="3">
 | 
					            <el-radio v-model="radioValue" :label="3">
 | 
				
			||||||
                从
 | 
					                {{ $t('components.crontab.crontypeFrom') }}
 | 
				
			||||||
                <el-input-number v-model="average01" :min="1" :max="12" /> 月开始,每 <el-input-number v-model="average02" :min="1" :max="12" /> 月月执行一次
 | 
					                <el-input-number v-model="average01" :min="1" :max="12" /> {{ $t('components.crontab.crontypeStartMonth') }},
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeEvery') }}
 | 
				
			||||||
 | 
					                <el-input-number v-model="average02" :min="1" :max="12" /> {{ $t('components.crontab.crontypeExecMonth') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="4" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="4" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="item in 12" :key="item" :value="`${item}`">{{ item }}</el-option>
 | 
					                    <el-option v-for="item in 12" :key="item" :value="`${item}`">{{ item }}</el-option>
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <div class="popup-result">
 | 
					    <div class="popup-result">
 | 
				
			||||||
        <p class="title">最近5次运行时间</p>
 | 
					        <p class="title">{{ $t('components.crontab.last5runTimes') }}</p>
 | 
				
			||||||
        <ul class="popup-result-scroll">
 | 
					        <ul class="popup-result-scroll">
 | 
				
			||||||
            <template v-if="isShow">
 | 
					            <template v-if="isShow">
 | 
				
			||||||
                <li v-for="item in resultList" :key="item">{{ item }}</li>
 | 
					                <li v-for="item in resultList" :key="item">{{ item }}</li>
 | 
				
			||||||
            </template>
 | 
					            </template>
 | 
				
			||||||
            <li v-else>计算结果中...</li>
 | 
					            <li v-else>{{ $t('components.crontab.calculationing') }}...</li>
 | 
				
			||||||
        </ul>
 | 
					        </ul>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
@@ -1,27 +1,30 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="1"> 秒,允许的通配符[, - * /] </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="1"> {{ $t('components.crontab.second') }},{{ $t('components.crontab.hourCronType1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="2">
 | 
					            <el-radio v-model="radioValue" :label="2">
 | 
				
			||||||
                周期从
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" /> 秒
 | 
					                <el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.second') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="3">
 | 
					            <el-radio v-model="radioValue" :label="3">
 | 
				
			||||||
                从
 | 
					                {{ $t('components.crontab.crontypeFrom') }}
 | 
				
			||||||
                <el-input-number v-model="average01" :min="0" :max="60" /> 秒开始,每 <el-input-number v-model="average02" :min="0" :max="60" /> 秒执行一次
 | 
					                <el-input-number v-model="average01" :min="0" :max="60" /> {{ $t('components.crontab.crontypeStartSecond') }},
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeEvery') }}<el-input-number v-model="average02" :min="0" :max="60" />
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeExecSecond') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="4" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="4" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="item in 60" :key="item" :value="`${item - 1}`">{{ item - 1 }}</el-option>
 | 
					                    <el-option v-for="item in 60" :key="item" :value="`${item - 1}`">{{ item - 1 }}</el-option>
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
@@ -1,22 +1,22 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="1"> 周,允许的通配符[, - * / L #] </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="1"> {{ $t('components.crontab.weekCronType1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="2"> 不指定 </el-radio>
 | 
					            <el-radio v-model="radioValue" :label="2"> {{ $t('components.crontab.crontype2') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="3">
 | 
					            <el-radio v-model="radioValue" :label="3">
 | 
				
			||||||
                周期从星期
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="1" :max="7" /> -
 | 
					                <el-input-number v-model="cycle01" :min="1" :max="7" /> -
 | 
				
			||||||
                <el-input-number v-model="cycle02" :min="1" :max="7" />
 | 
					                <el-input-number v-model="cycle02" :min="1" :max="7" />
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <!-- <el-form-item>
 | 
				
			||||||
            <el-radio v-model="radioValue" :label="4">
 | 
					            <el-radio v-model="radioValue" :label="4">
 | 
				
			||||||
                第
 | 
					                第
 | 
				
			||||||
                <el-input-number v-model="average01" :min="1" :max="4" /> 周的星期
 | 
					                <el-input-number v-model="average01" :min="1" :max="4" /> 周的星期
 | 
				
			||||||
@@ -29,13 +29,13 @@
 | 
				
			|||||||
                本月最后一个星期
 | 
					                本月最后一个星期
 | 
				
			||||||
                <el-input-number v-model="weekday" :min="1" :max="7" />
 | 
					                <el-input-number v-model="weekday" :min="1" :max="7" />
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item> -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="6" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="6" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 6" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 6" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="(item, index) of weekList" :label="item" :key="index" :value="`${index + 1}`">{{ item }}</el-option>
 | 
					                    <el-option v-for="(item, index) of weekList" :label="item" :key="index" :value="`${index + 1}`">{{ $t(item) }}</el-option>
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
@@ -56,7 +56,15 @@ const state = reactive({
 | 
				
			|||||||
    average01: 1,
 | 
					    average01: 1,
 | 
				
			||||||
    average02: 1,
 | 
					    average02: 1,
 | 
				
			||||||
    checkboxList: [] as any,
 | 
					    checkboxList: [] as any,
 | 
				
			||||||
    weekList: ['周一', '周二', '周三', '周四', '周五', '周六', '周日'],
 | 
					    weekList: [
 | 
				
			||||||
 | 
					        'components.crontab.monday',
 | 
				
			||||||
 | 
					        'components.crontab.tuesday',
 | 
				
			||||||
 | 
					        'components.crontab.wednesday',
 | 
				
			||||||
 | 
					        'components.crontab.thursday',
 | 
				
			||||||
 | 
					        'components.crontab.friday',
 | 
				
			||||||
 | 
					        'components.crontab.saturday',
 | 
				
			||||||
 | 
					        'components.crontab.sunday',
 | 
				
			||||||
 | 
					    ],
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const { radioValue, cycle01, cycle02, average01, average02, checkboxList, weekday, weekList } = toRefs(state);
 | 
					const { radioValue, cycle01, cycle02, average01, average02, checkboxList, weekday, weekList } = toRefs(state);
 | 
				
			||||||
@@ -1,16 +1,16 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-form size="small">
 | 
					    <el-form size="small">
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio :label="1" v-model="radioValue"> 不填,允许的通配符[, - * /] </el-radio>
 | 
					            <el-radio :label="1" v-model="radioValue"> {{ $t('components.crontab.hourCronType1') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio :label="2" v-model="radioValue"> 每年 </el-radio>
 | 
					            <el-radio :label="2" v-model="radioValue"> {{ $t('components.crontab.yearly') }} </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio :label="3" v-model="radioValue">
 | 
					            <el-radio :label="3" v-model="radioValue">
 | 
				
			||||||
                周期从
 | 
					                {{ $t('components.crontab.crontype3') }}
 | 
				
			||||||
                <el-input-number v-model="cycle01" :min="fullYear" /> -
 | 
					                <el-input-number v-model="cycle01" :min="fullYear" /> -
 | 
				
			||||||
                <el-input-number v-model="cycle02" :min="fullYear" />
 | 
					                <el-input-number v-model="cycle02" :min="fullYear" />
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
@@ -18,15 +18,17 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <el-radio :label="4" v-model="radioValue">
 | 
					            <el-radio :label="4" v-model="radioValue">
 | 
				
			||||||
                从
 | 
					                {{ $t('components.crontab.crontypeFrom') }}
 | 
				
			||||||
                <el-input-number v-model="average01" :min="fullYear" /> 年开始,每 <el-input-number v-model="average02" :min="fullYear" /> 年执行一次
 | 
					                <el-input-number v-model="average01" :min="fullYear" /> {{ $t('components.crontab.crontypeStartYear') }},
 | 
				
			||||||
 | 
					                {{ $t('components.crontab.crontypeEvery') }}
 | 
				
			||||||
 | 
					                <el-input-number v-model="average02" :min="fullYear" /> {{ $t('components.crontab.crontypeExecYear') }}
 | 
				
			||||||
            </el-radio>
 | 
					            </el-radio>
 | 
				
			||||||
        </el-form-item>
 | 
					        </el-form-item>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <el-form-item>
 | 
					        <el-form-item>
 | 
				
			||||||
            <div class="flex-align-center w100">
 | 
					            <div class="flex-align-center w100">
 | 
				
			||||||
                <el-radio v-model="radioValue" :label="5" class="mr5"> 指定 </el-radio>
 | 
					                <el-radio v-model="radioValue" :label="5" class="mr5"> {{ $t('components.crontab.appoint') }} </el-radio>
 | 
				
			||||||
                <el-select @click="radioValue = 5" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
 | 
					                <el-select @click="radioValue = 5" class="w100" clearable v-model="checkboxList" multiple>
 | 
				
			||||||
                    <el-option v-for="item in 9" :key="item" :value="`${item - 1 + fullYear}`" :label="item - 1 + fullYear" />
 | 
					                    <el-option v-for="item in 9" :key="item" :value="`${item - 1 + fullYear}`" :label="item - 1 + fullYear" />
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
							
								
								
									
										33
									
								
								frontend/src/components/drawer-header/DrawerHeader.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,33 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					    <el-page-header @back="props.back">
 | 
				
			||||||
 | 
					        <template #content>
 | 
				
			||||||
 | 
					            <span>{{ header }}</span>
 | 
				
			||||||
 | 
					            <span v-if="resource && !hideResource">
 | 
				
			||||||
 | 
					                -
 | 
				
			||||||
 | 
					                <el-tooltip v-if="resource.length > 25" :content="resource" placement="bottom">
 | 
				
			||||||
 | 
					                    <el-tag effect="dark" type="success">{{ resource.substring(0, 23) + '...' }}</el-tag>
 | 
				
			||||||
 | 
					                </el-tooltip>
 | 
				
			||||||
 | 
					                <el-tag v-else effect="dark" type="success">{{ resource }}</el-tag>
 | 
				
			||||||
 | 
					            </span>
 | 
				
			||||||
 | 
					            <el-divider v-if="slots.buttons" direction="vertical" />
 | 
				
			||||||
 | 
					            <slot v-if="slots.buttons" name="buttons"></slot>
 | 
				
			||||||
 | 
					        </template>
 | 
				
			||||||
 | 
					        <template #extra>
 | 
				
			||||||
 | 
					            <slot v-if="slots.extra" name="extra"></slot>
 | 
				
			||||||
 | 
					        </template>
 | 
				
			||||||
 | 
					    </el-page-header>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script lang="ts" setup>
 | 
				
			||||||
 | 
					import { useSlots } from 'vue';
 | 
				
			||||||
 | 
					const slots = useSlots();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					defineOptions({ name: 'DrawerHeader' });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const props = defineProps({
 | 
				
			||||||
 | 
					    header: String,
 | 
				
			||||||
 | 
					    back: Function,
 | 
				
			||||||
 | 
					    resource: String,
 | 
				
			||||||
 | 
					    hideResource: Boolean,
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
@@ -1,10 +1,18 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <div class="dynamic-form">
 | 
					    <div class="dynamic-form">
 | 
				
			||||||
        <el-form v-bind="$attrs" ref="formRef" :model="modelValue" label-width="auto">
 | 
					        <el-form v-bind="$attrs" ref="formRef" :model="modelValue" label-width="auto">
 | 
				
			||||||
            <el-form-item v-for="item in props.formItems as any" :key="item.name" :prop="item.model" :label="item.name" :required="item.required ?? true">
 | 
					            <el-form-item v-for="item in props.formItems as any" :key="item.name" :prop="item.model" :label="$t(item.name)" :required="item.required ?? true">
 | 
				
			||||||
                <el-input v-if="!item.options" v-model="modelValue[item.model]" :placeholder="item.placeholder" autocomplete="off" clearable></el-input>
 | 
					                <el-input v-if="!item.options" v-model="modelValue[item.model]" :placeholder="$t(item.placeholder)" autocomplete="off" clearable></el-input>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                <el-select v-else v-model="modelValue[item.model]" :placeholder="item.placeholder" filterable autocomplete="off" clearable style="width: 100%">
 | 
					                <el-select
 | 
				
			||||||
 | 
					                    v-else
 | 
				
			||||||
 | 
					                    v-model="modelValue[item.model]"
 | 
				
			||||||
 | 
					                    :placeholder="$t(item.placeholder)"
 | 
				
			||||||
 | 
					                    filterable
 | 
				
			||||||
 | 
					                    autocomplete="off"
 | 
				
			||||||
 | 
					                    clearable
 | 
				
			||||||
 | 
					                    style="width: 100%"
 | 
				
			||||||
 | 
					                >
 | 
				
			||||||
                    <el-option v-for="option in item.options.split(',')" :key="option" :label="option" :value="option" />
 | 
					                    <el-option v-for="option in item.options.split(',')" :key="option" :label="option" :value="option" />
 | 
				
			||||||
                </el-select>
 | 
					                </el-select>
 | 
				
			||||||
            </el-form-item>
 | 
					            </el-form-item>
 | 
				
			||||||
@@ -6,8 +6,8 @@
 | 
				
			|||||||
            <template #footer>
 | 
					            <template #footer>
 | 
				
			||||||
                <span>
 | 
					                <span>
 | 
				
			||||||
                    <slot name="btns">
 | 
					                    <slot name="btns">
 | 
				
			||||||
                        <el-button @click="dialogVisible = false">取 消</el-button>
 | 
					                        <el-button @click="dialogVisible = false">{{ $t('common.cancel') }}</el-button>
 | 
				
			||||||
                        <el-button type="primary" @click="confirm">确 定</el-button>
 | 
					                        <el-button type="primary" @click="confirm">{{ $t('common.confirm') }}</el-button>
 | 
				
			||||||
                    </slot>
 | 
					                    </slot>
 | 
				
			||||||
                </span>
 | 
					                </span>
 | 
				
			||||||
            </template>
 | 
					            </template>
 | 
				
			||||||
@@ -1,41 +1,41 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <div class="dynamic-form-edit w100">
 | 
					    <div class="dynamic-form-edit w100">
 | 
				
			||||||
        <el-table :data="formItems" stripe class="w100" empty-text="暂无表单项">
 | 
					        <el-table :data="formItems" stripe class="w100">
 | 
				
			||||||
            <el-table-column prop="name" label="model" min-width="100px">
 | 
					            <el-table-column prop="name" label="model" min-width="100px">
 | 
				
			||||||
                <template #header>
 | 
					                <template #header>
 | 
				
			||||||
                    <el-button class="ml0" type="primary" circle size="small" icon="Plus" @click="addItem()"> </el-button>
 | 
					                    <el-button class="ml0" type="primary" circle size="small" icon="Plus" @click="addItem()"> </el-button>
 | 
				
			||||||
                    <span class="ml10">model</span>
 | 
					                    <span class="ml10">model field</span>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
                <template #default="scope">
 | 
					                <template #default="scope">
 | 
				
			||||||
                    <el-input v-model="scope.row['model']" placeholder="字段model" clearable> </el-input>
 | 
					                    <el-input v-model="scope.row['model']" :placeholder="$t('components.df.fieldModelPlaceholder')" clearable> </el-input>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
            </el-table-column>
 | 
					            </el-table-column>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-table-column prop="name" label="label" min-width="100px">
 | 
					            <el-table-column prop="name" :label="$t('components.df.fieldLabel')" min-width="100px">
 | 
				
			||||||
                <template #default="scope">
 | 
					                <template #default="scope">
 | 
				
			||||||
                    <el-input v-model="scope.row['name']" placeholder="字段title" clearable> </el-input>
 | 
					                    <el-input v-model="scope.row['name']" clearable> </el-input>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
            </el-table-column>
 | 
					            </el-table-column>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-table-column prop="placeholder" label="字段说明" min-width="140px">
 | 
					            <el-table-column prop="placeholder" :label="$t('components.df.fieldPlaceholder')" min-width="140px">
 | 
				
			||||||
                <template #default="scope">
 | 
					                <template #default="scope">
 | 
				
			||||||
                    <el-input v-model="scope.row['placeholder']" placeholder="字段说明" clearable> </el-input>
 | 
					                    <el-input v-model="scope.row['placeholder']" clearable> </el-input>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
            </el-table-column>
 | 
					            </el-table-column>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-table-column prop="options" label="可选值" min-width="140px">
 | 
					            <el-table-column prop="options" :label="$t('components.df.optionalValues')" min-width="140px">
 | 
				
			||||||
                <template #default="scope">
 | 
					                <template #default="scope">
 | 
				
			||||||
                    <el-input v-model="scope.row['options']" placeholder="可选值 ,分割" clearable> </el-input>
 | 
					                    <el-input v-model="scope.row['options']" :placeholder="$t('components.df.optionalValuesPlaceholder')" clearable> </el-input>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
            </el-table-column>
 | 
					            </el-table-column>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-table-column prop="required" label="必填" min-width="40px">
 | 
					            <el-table-column prop="required" :label="$t('components.df.required')" min-width="65px">
 | 
				
			||||||
                <template #default="scope">
 | 
					                <template #default="scope">
 | 
				
			||||||
                    <el-checkbox v-model="scope.row['required']" />
 | 
					                    <el-checkbox v-model="scope.row['required']" />
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
            </el-table-column>
 | 
					            </el-table-column>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-table-column label="操作" wdith="20px">
 | 
					            <el-table-column :label="$t('common.operation')" wdith="20px">
 | 
				
			||||||
                <template #default="scope">
 | 
					                <template #default="scope">
 | 
				
			||||||
                    <el-button type="danger" @click="deleteItem(scope.$index)" icon="delete" plain></el-button>
 | 
					                    <el-button type="danger" @click="deleteItem(scope.$index)" icon="delete" plain></el-button>
 | 
				
			||||||
                </template>
 | 
					                </template>
 | 
				
			||||||
							
								
								
									
										17
									
								
								frontend/src/components/enumselect/EnumSelect.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,17 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					    <el-select v-bind="$attrs" v-model="modelValue">
 | 
				
			||||||
 | 
					        <el-option v-for="item in props.enums" :key="item.value" :label="$t(item.label)" :value="item.value"> </el-option>
 | 
				
			||||||
 | 
					    </el-select>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script lang="ts" setup>
 | 
				
			||||||
 | 
					const props = defineProps({
 | 
				
			||||||
 | 
					    enums: {
 | 
				
			||||||
 | 
					        type: Object, // 需要为EnumValue类型
 | 
				
			||||||
 | 
					        required: true,
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const modelValue: any = defineModel('modelValue');
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
 | 
					<style scoped lang="scss"></style>
 | 
				
			||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <el-tag v-bind="$attrs" :type="type" :color="color" effect="plain">{{ enumLabel }}</el-tag>
 | 
					    <el-tag :disable-transitions="true" v-bind="$attrs" :type="type" :color="color" effect="plain">{{ $t(enumLabel) }}</el-tag>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<script lang="ts" setup>
 | 
					<script lang="ts" setup>
 | 
				
			||||||
@@ -40,7 +40,7 @@ onMounted(() => {
 | 
				
			|||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const convert = (value: any) => {
 | 
					const convert = (value: any) => {
 | 
				
			||||||
    const enumValue = EnumValue.getEnumByValue(Object.values(props.enums as any) as any, value) as any;
 | 
					    const enumValue = EnumValue.getEnumByValue(props.enums, value) as any;
 | 
				
			||||||
    if (!enumValue) {
 | 
					    if (!enumValue) {
 | 
				
			||||||
        state.enumLabel = '-';
 | 
					        state.enumLabel = '-';
 | 
				
			||||||
        state.type = 'danger';
 | 
					        state.type = 'danger';
 | 
				
			||||||
							
								
								
									
										60
									
								
								frontend/src/components/file/FileInfo.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,60 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					    <el-tooltip :content="formatByteSize(fileDetail?.size)" placement="left">
 | 
				
			||||||
 | 
					        <el-link v-if="props.canDownload" target="_blank" rel="noopener noreferrer" icon="Download" type="primary" :href="getFileUrl(props.fileKey)"></el-link>
 | 
				
			||||||
 | 
					    </el-tooltip>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    {{ fileDetail?.filename }}
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script lang="ts" setup>
 | 
				
			||||||
 | 
					import { onMounted, ref, watch } from 'vue';
 | 
				
			||||||
 | 
					import openApi from '@/common/openApi';
 | 
				
			||||||
 | 
					import { getFileUrl } from '@/common/request';
 | 
				
			||||||
 | 
					import { formatByteSize } from '@/common/utils/format';
 | 
				
			||||||
 | 
					const props = defineProps({
 | 
				
			||||||
 | 
					    fileKey: {
 | 
				
			||||||
 | 
					        type: String,
 | 
				
			||||||
 | 
					        required: true,
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    files: {
 | 
				
			||||||
 | 
					        type: [Array],
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    canDownload: {
 | 
				
			||||||
 | 
					        type: Boolean,
 | 
				
			||||||
 | 
					        default: true,
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					onMounted(async () => {
 | 
				
			||||||
 | 
					    setFileInfo();
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					watch(
 | 
				
			||||||
 | 
					    () => props.fileKey,
 | 
				
			||||||
 | 
					    async (val) => {
 | 
				
			||||||
 | 
					        if (val) {
 | 
				
			||||||
 | 
					            setFileInfo();
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const fileDetail: any = ref({});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const setFileInfo = async () => {
 | 
				
			||||||
 | 
					    if (!props.fileKey) {
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    if (props.files && props.files.length > 0) {
 | 
				
			||||||
 | 
					        const file: any = props.files.find((file: any) => {
 | 
				
			||||||
 | 
					            return file.fileKey === props.fileKey;
 | 
				
			||||||
 | 
					        });
 | 
				
			||||||
 | 
					        fileDetail.value = file;
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const files = await openApi.getFileDetail([props.fileKey]);
 | 
				
			||||||
 | 
					    fileDetail.value = files?.[0];
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<style lang="scss"></style>
 | 
				
			||||||
@@ -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" />
 | 
				
			||||||
@@ -252,7 +252,9 @@ const changeLanguage = (value: any) => {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const setEditorValue = (value: any) => {
 | 
					const setEditorValue = (value: any) => {
 | 
				
			||||||
 | 
					    if (value) {
 | 
				
			||||||
        monacoEditorIns.getModel()?.setValue(value);
 | 
					        monacoEditorIns.getModel()?.setValue(value);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
@@ -2,7 +2,8 @@
 | 
				
			|||||||
    <div>
 | 
					    <div>
 | 
				
			||||||
        <transition name="el-zoom-in-top">
 | 
					        <transition name="el-zoom-in-top">
 | 
				
			||||||
            <!-- 查询表单 -->
 | 
					            <!-- 查询表单 -->
 | 
				
			||||||
            <SearchForm v-if="isShowSearch" :items="tableSearchItems" v-model="queryForm" :search="search" :reset="reset" :search-col="searchCol">
 | 
					            <SearchForm v-if="isShowSearch" :items="tableSearchItems" v-model="queryForm" :search="search"
 | 
				
			||||||
 | 
					                :reset="reset" :search-col="searchCol">
 | 
				
			||||||
                <!-- 遍历父组件传入的 solts 透传给子组件 -->
 | 
					                <!-- 遍历父组件传入的 solts 透传给子组件 -->
 | 
				
			||||||
                <template v-for="(_, key) in useSlots()" v-slot:[key]>
 | 
					                <template v-for="(_, key) in useSlots()" v-slot:[key]>
 | 
				
			||||||
                    <slot :name="key"></slot>
 | 
					                    <slot :name="key"></slot>
 | 
				
			||||||
@@ -27,54 +28,45 @@
 | 
				
			|||||||
                                        <SvgIcon :size="16" name="CaretBottom" class="mr4 mt6 simple-search-form-btn" />
 | 
					                                        <SvgIcon :size="16" name="CaretBottom" class="mr4 mt6 simple-search-form-btn" />
 | 
				
			||||||
                                        <template #dropdown>
 | 
					                                        <template #dropdown>
 | 
				
			||||||
                                            <el-dropdown-menu>
 | 
					                                            <el-dropdown-menu>
 | 
				
			||||||
                                                <el-dropdown-item
 | 
					                                                <el-dropdown-item v-for="searchItem in searchItems"
 | 
				
			||||||
                                                    v-for="searchItem in searchItems"
 | 
					                                                    :key="searchItem.prop" @click="changeSimpleFormItem(searchItem)">
 | 
				
			||||||
                                                    :key="searchItem.prop"
 | 
					                                                    {{ $t(searchItem.label) }}
 | 
				
			||||||
                                                    @click="changeSimpleFormItem(searchItem)"
 | 
					 | 
				
			||||||
                                                >
 | 
					 | 
				
			||||||
                                                    {{ searchItem.label }}
 | 
					 | 
				
			||||||
                                                </el-dropdown-item>
 | 
					                                                </el-dropdown-item>
 | 
				
			||||||
                                            </el-dropdown-menu>
 | 
					                                            </el-dropdown-menu>
 | 
				
			||||||
                                        </template>
 | 
					                                        </template>
 | 
				
			||||||
                                    </el-dropdown>
 | 
					                                    </el-dropdown>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <div class="simple-search-form-label mt5">
 | 
					                                    <div class="simple-search-form-label mt5">
 | 
				
			||||||
                                        <el-text truncated tag="b">{{ `${nowSearchItem?.label} : ` }}</el-text>
 | 
					                                        <el-text truncated tag="b">{{ `${$t(nowSearchItem?.label)} : ` }}</el-text>
 | 
				
			||||||
                                    </div>
 | 
					                                    </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <el-form-item style="width: 200px" :key="nowSearchItem.prop">
 | 
					                                    <el-form-item style="width: 200px" :key="nowSearchItem.prop">
 | 
				
			||||||
                                        <SearchFormItem
 | 
					                                        <SearchFormItem @keyup.enter.native="searchFormItemKeyUpEnter"
 | 
				
			||||||
                                            @keyup.enter.native="searchFormItemKeyUpEnter"
 | 
					                                            v-if="!nowSearchItem.slot" :item="nowSearchItem"
 | 
				
			||||||
                                            v-if="!nowSearchItem.slot"
 | 
					                                            v-model="queryForm[nowSearchItem.prop]" />
 | 
				
			||||||
                                            :item="nowSearchItem"
 | 
					 | 
				
			||||||
                                            v-model="queryForm[nowSearchItem.prop]"
 | 
					 | 
				
			||||||
                                        />
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                        <slot @keyup.enter.native="searchFormItemKeyUpEnter" v-else :name="nowSearchItem.slot"></slot>
 | 
					                                        <slot @keyup.enter.native="searchFormItemKeyUpEnter" v-else
 | 
				
			||||||
 | 
					                                            :name="nowSearchItem.slot">
 | 
				
			||||||
 | 
					                                        </slot>
 | 
				
			||||||
                                    </el-form-item>
 | 
					                                    </el-form-item>
 | 
				
			||||||
                                </div>
 | 
					                                </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                <div>
 | 
					                                <div>
 | 
				
			||||||
                                    <el-button v-if="showToolButton('search') && searchItems?.length" icon="Search" circle @click="search" />
 | 
					                                    <el-button v-if="showToolButton('search') && searchItems?.length" icon="Search"
 | 
				
			||||||
 | 
					                                        circle @click="search" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <!-- <el-button v-if="showToolButton('refresh')" icon="Refresh" circle @click="execQuery()" /> -->
 | 
					                                    <!-- <el-button v-if="showToolButton('refresh')" icon="Refresh" circle @click="execQuery()" /> -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <el-button
 | 
					                                    <el-button v-if="showToolButton('search') && searchItems?.length > 1"
 | 
				
			||||||
                                        v-if="showToolButton('search') && searchItems?.length > 1"
 | 
					                                        :icon="isShowSearch ? 'ArrowDown' : 'ArrowUp'" circle
 | 
				
			||||||
                                        :icon="isShowSearch ? 'ArrowDown' : 'ArrowUp'"
 | 
					                                        @click="isShowSearch = !isShowSearch" />
 | 
				
			||||||
                                        circle
 | 
					 | 
				
			||||||
                                        @click="isShowSearch = !isShowSearch"
 | 
					 | 
				
			||||||
                                    />
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <el-popover
 | 
					                                    <el-popover placement="bottom" title="表格配置"
 | 
				
			||||||
                                        placement="bottom"
 | 
					                                        popper-style="max-height: 550px; overflow: auto; max-width: 450px" width="auto"
 | 
				
			||||||
                                        title="表格配置"
 | 
					                                        trigger="click">
 | 
				
			||||||
                                        popper-style="max-height: 550px; overflow: auto; max-width: 450px"
 | 
					 | 
				
			||||||
                                        width="auto"
 | 
					 | 
				
			||||||
                                        trigger="click"
 | 
					 | 
				
			||||||
                                    >
 | 
					 | 
				
			||||||
                                        <div v-for="(item, index) in tableColumns" :key="index">
 | 
					                                        <div v-for="(item, index) in tableColumns" :key="index">
 | 
				
			||||||
                                            <el-checkbox v-model="item.show" :label="item.label" :true-label="true" :false-label="false" />
 | 
					                                            <el-checkbox v-model="item.show" :label="item.label" :true-value="true"
 | 
				
			||||||
 | 
					                                                :false-value="false" />
 | 
				
			||||||
                                        </div>
 | 
					                                        </div>
 | 
				
			||||||
                                        <template #reference>
 | 
					                                        <template #reference>
 | 
				
			||||||
                                            <el-button icon="Operation" circle :size="props.size"></el-button>
 | 
					                                            <el-button icon="Operation" circle :size="props.size"></el-button>
 | 
				
			||||||
@@ -86,63 +78,38 @@
 | 
				
			|||||||
                    </div>
 | 
					                    </div>
 | 
				
			||||||
                </div>
 | 
					                </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                <el-table
 | 
					                <el-table ref="tableRef" v-bind="$attrs" :max-height="tableMaxHeight"
 | 
				
			||||||
                    ref="tableRef"
 | 
					                    @selection-change="handleSelectionChange" :data="tableData" highlight-current-row
 | 
				
			||||||
                    v-bind="$attrs"
 | 
					                    v-loading="loading" :size="props.size as any" :border="border">
 | 
				
			||||||
                    :max-height="tableMaxHeight"
 | 
					 | 
				
			||||||
                    @selection-change="handleSelectionChange"
 | 
					 | 
				
			||||||
                    :data="tableData"
 | 
					 | 
				
			||||||
                    highlight-current-row
 | 
					 | 
				
			||||||
                    v-loading="loading"
 | 
					 | 
				
			||||||
                    :size="props.size as any"
 | 
					 | 
				
			||||||
                    :border="border"
 | 
					 | 
				
			||||||
                >
 | 
					 | 
				
			||||||
                    <el-table-column v-if="props.showSelection" :selectable="selectable" type="selection" width="40" />
 | 
					                    <el-table-column v-if="props.showSelection" :selectable="selectable" type="selection" width="40" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    <template v-for="(item, index) in tableColumns">
 | 
					                    <template v-for="(item, index) in tableColumns">
 | 
				
			||||||
                        <el-table-column
 | 
					                        <el-table-column :key="index" v-if="item.show" :prop="item.prop" :label="$t(item.label)"
 | 
				
			||||||
                            :key="index"
 | 
					                            :fixed="item.fixed" :align="item.align" :show-overflow-tooltip="item.showOverflowTooltip"
 | 
				
			||||||
                            v-if="item.show"
 | 
					                            :min-width="item.minWidth" :sortable="item.sortable || false" :type="item.type"
 | 
				
			||||||
                            :prop="item.prop"
 | 
					                            :width="item.width">
 | 
				
			||||||
                            :label="item.label"
 | 
					 | 
				
			||||||
                            :fixed="item.fixed"
 | 
					 | 
				
			||||||
                            :align="item.align"
 | 
					 | 
				
			||||||
                            :show-overflow-tooltip="item.showOverflowTooltip"
 | 
					 | 
				
			||||||
                            :min-width="item.minWidth"
 | 
					 | 
				
			||||||
                            :sortable="item.sortable || false"
 | 
					 | 
				
			||||||
                            :type="item.type"
 | 
					 | 
				
			||||||
                            :width="item.width"
 | 
					 | 
				
			||||||
                        >
 | 
					 | 
				
			||||||
                            <!-- 插槽:预留功能 -->
 | 
					                            <!-- 插槽:预留功能 -->
 | 
				
			||||||
                            <template #default="scope" v-if="item.slot">
 | 
					                            <template #default="scope" v-if="item.slot">
 | 
				
			||||||
                                <slot :name="item.prop" :data="scope.row"></slot>
 | 
					                                <slot :name="item.slotName ? item.slotName : item.prop" :data="scope.row"></slot>
 | 
				
			||||||
                            </template>
 | 
					                            </template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            <!-- 枚举类型使用tab展示 -->
 | 
					                            <!-- 枚举类型使用tab展示 -->
 | 
				
			||||||
                            <template #default="scope" v-else-if="item.type == 'tag'">
 | 
					                            <template #default="scope" v-else-if="item.type == 'tag'">
 | 
				
			||||||
                                <enum-tag :size="props.size" :enums="item.typeParam" :value="scope.row[item.prop]"></enum-tag>
 | 
					                                <enum-tag :size="props.size" :enums="item.typeParam"
 | 
				
			||||||
 | 
					                                    :value="item.getValueByData(scope.row)"></enum-tag>
 | 
				
			||||||
                            </template>
 | 
					                            </template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            <template #default="scope" v-else>
 | 
					                            <template #default="scope" v-else>
 | 
				
			||||||
                                <!-- 配置了美化文本按钮以及文本内容大于指定长度,则显示美化按钮 -->
 | 
					                                <!-- 配置了美化文本按钮以及文本内容大于指定长度,则显示美化按钮 -->
 | 
				
			||||||
                                <el-popover
 | 
					                                <el-popover v-if="item.isBeautify && item.getValueByData(scope.row)?.length > 35"
 | 
				
			||||||
                                    v-if="item.isBeautify && scope.row[item.prop]?.length > 35"
 | 
					                                    effect="light" trigger="click" placement="top" width="600px">
 | 
				
			||||||
                                    effect="light"
 | 
					 | 
				
			||||||
                                    trigger="click"
 | 
					 | 
				
			||||||
                                    placement="top"
 | 
					 | 
				
			||||||
                                    width="600px"
 | 
					 | 
				
			||||||
                                >
 | 
					 | 
				
			||||||
                                    <template #default>
 | 
					                                    <template #default>
 | 
				
			||||||
                                        <el-input :autosize="{ minRows: 3, maxRows: 15 }" disabled v-model="formatVal" type="textarea" />
 | 
					                                        <el-input :autosize="{ minRows: 3, maxRows: 15 }" disabled v-model="formatVal"
 | 
				
			||||||
 | 
					                                            type="textarea" />
 | 
				
			||||||
                                    </template>
 | 
					                                    </template>
 | 
				
			||||||
                                    <template #reference>
 | 
					                                    <template #reference>
 | 
				
			||||||
                                        <el-link
 | 
					                                        <el-link @click="formatText(item.getValueByData(scope.row))" :underline="false"
 | 
				
			||||||
                                            @click="formatText(scope.row[item.prop])"
 | 
					                                            type="success" icon="MagicStick" class="mr5"></el-link>
 | 
				
			||||||
                                            :underline="false"
 | 
					 | 
				
			||||||
                                            type="success"
 | 
					 | 
				
			||||||
                                            icon="MagicStick"
 | 
					 | 
				
			||||||
                                            class="mr5"
 | 
					 | 
				
			||||||
                                        ></el-link>
 | 
					 | 
				
			||||||
                                    </template>
 | 
					                                    </template>
 | 
				
			||||||
                                </el-popover>
 | 
					                                </el-popover>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -154,17 +121,10 @@
 | 
				
			|||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <el-row v-if="props.pageable" class="mt20" type="flex" justify="end">
 | 
					            <el-row v-if="props.pageable" class="mt20" type="flex" justify="end">
 | 
				
			||||||
                <el-pagination
 | 
					                <el-pagination :small="props.size == 'small'" @current-change="pageNumChange"
 | 
				
			||||||
                    :small="props.size == 'small'"
 | 
					                    @size-change="pageSizeChange" style="text-align: right" layout="prev, pager, next, total, sizes"
 | 
				
			||||||
                    @current-change="handlePageNumChange"
 | 
					                    :total="total" v-model:current-page="queryForm.pageNum" v-model:page-size="queryForm.pageSize"
 | 
				
			||||||
                    @size-change="handlePageSizeChange"
 | 
					                    :page-sizes="pageSizes" />
 | 
				
			||||||
                    style="text-align: right"
 | 
					 | 
				
			||||||
                    layout="prev, pager, next, total, sizes, jumper"
 | 
					 | 
				
			||||||
                    :total="total"
 | 
					 | 
				
			||||||
                    v-model:current-page="queryForm.pageNum"
 | 
					 | 
				
			||||||
                    v-model:page-size="queryForm.pageSize"
 | 
					 | 
				
			||||||
                    :page-sizes="pageSizes"
 | 
					 | 
				
			||||||
                />
 | 
					 | 
				
			||||||
            </el-row>
 | 
					            </el-row>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@@ -185,7 +145,8 @@ import SvgIcon from '@/components/svgIcon/index.vue';
 | 
				
			|||||||
import { usePageTable } from '@/hooks/usePageTable';
 | 
					import { usePageTable } from '@/hooks/usePageTable';
 | 
				
			||||||
import { ElTable } from 'element-plus';
 | 
					import { ElTable } from 'element-plus';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const emit = defineEmits(['update:queryForm', 'update:selectionData', 'pageChange']);
 | 
					
 | 
				
			||||||
 | 
					const emit = defineEmits(['update:selectionData', 'pageSizeChange', 'pageNumChange']);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export interface PageTableProps {
 | 
					export interface PageTableProps {
 | 
				
			||||||
    size?: string;
 | 
					    size?: string;
 | 
				
			||||||
@@ -257,6 +218,15 @@ const changeSimpleFormItem = (searchItem: SearchItem) => {
 | 
				
			|||||||
    nowSearchItem.value = searchItem;
 | 
					    nowSearchItem.value = searchItem;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const pageSizeChange = (val: number) => {
 | 
				
			||||||
 | 
					    emit('pageSizeChange', val);
 | 
				
			||||||
 | 
					    handlePageSizeChange(val);
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					const pageNumChange = (val: number) => {
 | 
				
			||||||
 | 
					    emit('pageNumChange', val);
 | 
				
			||||||
 | 
					    handlePageNumChange(val);
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let { tableData, total, loading, search, reset, getTableData, handlePageNumChange, handlePageSizeChange } = usePageTable(
 | 
					let { tableData, total, loading, search, reset, getTableData, handlePageNumChange, handlePageSizeChange } = usePageTable(
 | 
				
			||||||
    props.pageable,
 | 
					    props.pageable,
 | 
				
			||||||
    props.pageApi,
 | 
					    props.pageApi,
 | 
				
			||||||
@@ -353,6 +323,7 @@ defineExpose({
 | 
				
			|||||||
    tableRef: tableRef,
 | 
					    tableRef: tableRef,
 | 
				
			||||||
    search: getTableData,
 | 
					    search: getTableData,
 | 
				
			||||||
    getData,
 | 
					    getData,
 | 
				
			||||||
 | 
					    total,
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
<style scoped lang="scss">
 | 
					<style scoped lang="scss">
 | 
				
			||||||
@@ -367,6 +338,7 @@ defineExpose({
 | 
				
			|||||||
    // 表格 header 样式
 | 
					    // 表格 header 样式
 | 
				
			||||||
    .table-header {
 | 
					    .table-header {
 | 
				
			||||||
        width: 100%;
 | 
					        width: 100%;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        .header-button-lf {
 | 
					        .header-button-lf {
 | 
				
			||||||
            float: left;
 | 
					            float: left;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@@ -435,7 +407,7 @@ defineExpose({
 | 
				
			|||||||
        // }
 | 
					        // }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // 设置 el-table 中 header 文字不换行,并省略
 | 
					        // 设置 el-table 中 header 文字不换行,并省略
 | 
				
			||||||
        .el-table__header .el-table__cell > .cell {
 | 
					        .el-table__header .el-table__cell>.cell {
 | 
				
			||||||
            // white-space: nowrap;
 | 
					            // white-space: nowrap;
 | 
				
			||||||
            white-space: wrap;
 | 
					            white-space: wrap;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@@ -1,6 +1,8 @@
 | 
				
			|||||||
import EnumValue from '@/common/Enum';
 | 
					import EnumValue from '@/common/Enum';
 | 
				
			||||||
import { dateFormat } from '@/common/utils/date';
 | 
					import { formatDate } from '@/common/utils/format';
 | 
				
			||||||
 | 
					import { getValueByPath } from '@/common/utils/object';
 | 
				
			||||||
import { getTextWidth } from '@/common/utils/string';
 | 
					import { getTextWidth } from '@/common/utils/string';
 | 
				
			||||||
 | 
					import { i18n } from '@/i18n';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class TableColumn {
 | 
					export class TableColumn {
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
@@ -29,10 +31,15 @@ export class TableColumn {
 | 
				
			|||||||
    minWidth: number | string;
 | 
					    minWidth: number | string;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * 是否插槽,是的话插槽名则为prop属性名
 | 
					     * 是否为插槽,若slotName为空则插槽名为prop属性名
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    slot: boolean = false;
 | 
					    slot: boolean = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * 插槽名,
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    slotName: string = '';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    showOverflowTooltip: boolean = true;
 | 
					    showOverflowTooltip: boolean = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    sortable: boolean = false;
 | 
					    sortable: boolean = false;
 | 
				
			||||||
@@ -87,7 +94,7 @@ export class TableColumn {
 | 
				
			|||||||
        if (this.formatFunc) {
 | 
					        if (this.formatFunc) {
 | 
				
			||||||
            return this.formatFunc(rowData, this.prop);
 | 
					            return this.formatFunc(rowData, this.prop);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        return rowData[this.prop];
 | 
					        return getValueByPath(rowData, this.prop);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    static new(prop: string, label: string): TableColumn {
 | 
					    static new(prop: string, label: string): TableColumn {
 | 
				
			||||||
@@ -144,8 +151,9 @@ export class TableColumn {
 | 
				
			|||||||
     * 标识该列为插槽
 | 
					     * 标识该列为插槽
 | 
				
			||||||
     * @returns this
 | 
					     * @returns this
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    isSlot(): TableColumn {
 | 
					    isSlot(slotName: string = ''): TableColumn {
 | 
				
			||||||
        this.slot = true;
 | 
					        this.slot = true;
 | 
				
			||||||
 | 
					        this.slotName = slotName;
 | 
				
			||||||
        return this;
 | 
					        return this;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -165,7 +173,7 @@ export class TableColumn {
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    isTime(): TableColumn {
 | 
					    isTime(): TableColumn {
 | 
				
			||||||
        this.setFormatFunc((data: any, prop: string) => {
 | 
					        this.setFormatFunc((data: any, prop: string) => {
 | 
				
			||||||
            return dateFormat(data[prop]);
 | 
					            return formatDate(getValueByPath(data, prop));
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
        return this;
 | 
					        return this;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -176,7 +184,7 @@ export class TableColumn {
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    isEnum(enums: any): TableColumn {
 | 
					    isEnum(enums: any): TableColumn {
 | 
				
			||||||
        this.setFormatFunc((data: any, prop: string) => {
 | 
					        this.setFormatFunc((data: any, prop: string) => {
 | 
				
			||||||
            return EnumValue.getLabelByValue(enums, data[prop]);
 | 
					            return i18n.global.t(EnumValue.getLabelByValue(enums, getValueByPath(data, prop)));
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
        return this;
 | 
					        return this;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -218,7 +226,7 @@ export class TableColumn {
 | 
				
			|||||||
        // 获取该列中最长的数据(内容)
 | 
					        // 获取该列中最长的数据(内容)
 | 
				
			||||||
        for (let i = 0; i < tableData.length; i++) {
 | 
					        for (let i = 0; i < tableData.length; i++) {
 | 
				
			||||||
            let nowData = tableData[i];
 | 
					            let nowData = tableData[i];
 | 
				
			||||||
            let nowValue = nowData[prop];
 | 
					            let nowValue = getValueByPath(nowData, prop);
 | 
				
			||||||
            if (!nowValue) {
 | 
					            if (!nowValue) {
 | 
				
			||||||
                continue;
 | 
					                continue;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
@@ -236,7 +244,7 @@ export class TableColumn {
 | 
				
			|||||||
        // 需要加上表格的内间距等,视情况加
 | 
					        // 需要加上表格的内间距等,视情况加
 | 
				
			||||||
        const contentWidth: number = getTextWidth(maxWidthText) + 30;
 | 
					        const contentWidth: number = getTextWidth(maxWidthText) + 30;
 | 
				
			||||||
        // 获取label的宽度,取较大的宽度
 | 
					        // 获取label的宽度,取较大的宽度
 | 
				
			||||||
        const columnWidth: number = getTextWidth(label) + 60;
 | 
					        const columnWidth: number = getTextWidth(i18n.global.t(label)) + 60;
 | 
				
			||||||
        const flexWidth: number = contentWidth > columnWidth ? contentWidth : columnWidth;
 | 
					        const flexWidth: number = contentWidth > columnWidth ? contentWidth : columnWidth;
 | 
				
			||||||
        // 设置上限与累加需要额外增加的宽度
 | 
					        // 设置上限与累加需要额外增加的宽度
 | 
				
			||||||
        this.minWidth = (flexWidth > 400 ? 400 : flexWidth) + this.addWidth;
 | 
					        this.minWidth = (flexWidth > 400 ? 400 : flexWidth) + this.addWidth;
 | 
				
			||||||