xu 11 місяців тому
батько
коміт
6b5719089b
38 змінених файлів з 25 додано та 2700 видалено
  1. 1 3
      server/api/v1/enter.go
  2. 0 13
      server/api/v1/example/enter.go
  3. 0 150
      server/api/v1/example/exa_breakpoint_continue.go
  4. 0 176
      server/api/v1/example/exa_customer.go
  5. 0 110
      server/api/v1/example/exa_file_upload_download.go
  6. 14 17
      server/initialize/router.go
  7. 1 3
      server/router/enter.go
  8. 0 6
      server/router/example/enter.go
  9. 0 24
      server/router/example/exa_customer.go
  10. 0 23
      server/router/example/exa_file_upload_and_download.go
  11. 1 3
      server/service/enter.go
  12. 0 6
      server/service/example/enter.go
  13. 0 69
      server/service/example/exa_breakpoint_continue.go
  14. 0 85
      server/service/example/exa_customer.go
  15. 0 108
      server/service/example/exa_file_upload_download.go
  16. BIN
      web/favicon.ico
  17. BIN
      web/src/assets/lc_logo.jpg
  18. BIN
      web/src/assets/logo.png
  19. 2 43
      web/src/core/config.js
  20. 0 10
      web/src/core/gin-vue-admin.js
  21. 0 208
      web/src/view/about/index.vue
  22. 1 86
      web/src/view/dashboard/index.vue
  23. 1 1
      web/src/view/dashboard/weather.js
  24. 0 291
      web/src/view/example/breakpoint/breakpoint.vue
  25. 0 232
      web/src/view/example/customer/customer.vue
  26. 0 22
      web/src/view/example/index.vue
  27. 0 247
      web/src/view/example/upload/upload.vue
  28. 0 376
      web/src/view/init/index.vue
  29. 0 37
      web/src/view/layout/bottomInfo/bottomInfo.vue
  30. 1 3
      web/src/view/layout/index.vue
  31. 3 63
      web/src/view/login/index.vue
  32. 0 4
      web/src/view/superAdmin/api/api.vue
  33. 0 4
      web/src/view/superAdmin/authority/authority.vue
  34. 0 24
      web/src/view/superAdmin/menu/menu.vue
  35. 0 237
      web/src/view/system/state.vue
  36. 0 4
      web/src/view/systemTools/autoCode/index.vue
  37. 0 8
      web/src/view/systemTools/autoPkg/autoPkg.vue
  38. 0 4
      web/src/view/systemTools/autoPlug/autoPlug.vue

+ 1 - 3
server/api/v1/enter.go

@@ -1,13 +1,11 @@
 package v1
 
 import (
-	"github.com/flipped-aurora/gin-vue-admin/server/api/v1/example"
 	"github.com/flipped-aurora/gin-vue-admin/server/api/v1/system"
 )
 
 type ApiGroup struct {
-	SystemApiGroup  system.ApiGroup
-	ExampleApiGroup example.ApiGroup
+	SystemApiGroup system.ApiGroup
 }
 
 var ApiGroupApp = new(ApiGroup)

+ 0 - 13
server/api/v1/example/enter.go

@@ -1,13 +0,0 @@
-package example
-
-import "github.com/flipped-aurora/gin-vue-admin/server/service"
-
-type ApiGroup struct {
-	CustomerApi
-	FileUploadAndDownloadApi
-}
-
-var (
-	customerService              = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
-	fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
-)

+ 0 - 150
server/api/v1/example/exa_breakpoint_continue.go

@@ -1,150 +0,0 @@
-package example
-
-import (
-	"fmt"
-	"io"
-	"mime/multipart"
-	"strconv"
-
-	"github.com/flipped-aurora/gin-vue-admin/server/model/example"
-
-	"github.com/flipped-aurora/gin-vue-admin/server/global"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
-	exampleRes "github.com/flipped-aurora/gin-vue-admin/server/model/example/response"
-	"github.com/flipped-aurora/gin-vue-admin/server/utils"
-	"github.com/gin-gonic/gin"
-	"go.uber.org/zap"
-)
-
-// BreakpointContinue
-// @Tags      ExaFileUploadAndDownload
-// @Summary   断点续传到服务器
-// @Security  ApiKeyAuth
-// @accept    multipart/form-data
-// @Produce   application/json
-// @Param     file  formData  file                           true  "an example for breakpoint resume, 断点续传示例"
-// @Success   200   {object}  response.Response{msg=string}  "断点续传到服务器"
-// @Router    /fileUploadAndDownload/breakpointContinue [post]
-func (b *FileUploadAndDownloadApi) BreakpointContinue(c *gin.Context) {
-	fileMd5 := c.Request.FormValue("fileMd5")
-	fileName := c.Request.FormValue("fileName")
-	chunkMd5 := c.Request.FormValue("chunkMd5")
-	chunkNumber, _ := strconv.Atoi(c.Request.FormValue("chunkNumber"))
-	chunkTotal, _ := strconv.Atoi(c.Request.FormValue("chunkTotal"))
-	_, FileHeader, err := c.Request.FormFile("file")
-	if err != nil {
-		global.GVA_LOG.Error("接收文件失败!", zap.Error(err))
-		response.FailWithMessage("接收文件失败", c)
-		return
-	}
-	f, err := FileHeader.Open()
-	if err != nil {
-		global.GVA_LOG.Error("文件读取失败!", zap.Error(err))
-		response.FailWithMessage("文件读取失败", c)
-		return
-	}
-	defer func(f multipart.File) {
-		err := f.Close()
-		if err != nil {
-			fmt.Println(err)
-		}
-	}(f)
-	cen, _ := io.ReadAll(f)
-	if !utils.CheckMd5(cen, chunkMd5) {
-		global.GVA_LOG.Error("检查md5失败!", zap.Error(err))
-		response.FailWithMessage("检查md5失败", c)
-		return
-	}
-	file, err := fileUploadAndDownloadService.FindOrCreateFile(fileMd5, fileName, chunkTotal)
-	if err != nil {
-		global.GVA_LOG.Error("查找或创建记录失败!", zap.Error(err))
-		response.FailWithMessage("查找或创建记录失败", c)
-		return
-	}
-	pathC, err := utils.BreakPointContinue(cen, fileName, chunkNumber, chunkTotal, fileMd5)
-	if err != nil {
-		global.GVA_LOG.Error("断点续传失败!", zap.Error(err))
-		response.FailWithMessage("断点续传失败", c)
-		return
-	}
-
-	if err = fileUploadAndDownloadService.CreateFileChunk(file.ID, pathC, chunkNumber); err != nil {
-		global.GVA_LOG.Error("创建文件记录失败!", zap.Error(err))
-		response.FailWithMessage("创建文件记录失败", c)
-		return
-	}
-	response.OkWithMessage("切片创建成功", c)
-}
-
-// FindFile
-// @Tags      ExaFileUploadAndDownload
-// @Summary   查找文件
-// @Security  ApiKeyAuth
-// @accept    multipart/form-data
-// @Produce   application/json
-// @Param     file  formData  file                                                        true  "Find the file, 查找文件"
-// @Success   200   {object}  response.Response{data=exampleRes.FileResponse,msg=string}  "查找文件,返回包括文件详情"
-// @Router    /fileUploadAndDownload/findFile [post]
-func (b *FileUploadAndDownloadApi) FindFile(c *gin.Context) {
-	fileMd5 := c.Query("fileMd5")
-	fileName := c.Query("fileName")
-	chunkTotal, _ := strconv.Atoi(c.Query("chunkTotal"))
-	file, err := fileUploadAndDownloadService.FindOrCreateFile(fileMd5, fileName, chunkTotal)
-	if err != nil {
-		global.GVA_LOG.Error("查找失败!", zap.Error(err))
-		response.FailWithMessage("查找失败", c)
-	} else {
-		response.OkWithDetailed(exampleRes.FileResponse{File: file}, "查找成功", c)
-	}
-}
-
-// BreakpointContinueFinish
-// @Tags      ExaFileUploadAndDownload
-// @Summary   创建文件
-// @Security  ApiKeyAuth
-// @accept    multipart/form-data
-// @Produce   application/json
-// @Param     file  formData  file                                                            true  "上传文件完成"
-// @Success   200   {object}  response.Response{data=exampleRes.FilePathResponse,msg=string}  "创建文件,返回包括文件路径"
-// @Router    /fileUploadAndDownload/findFile [post]
-func (b *FileUploadAndDownloadApi) BreakpointContinueFinish(c *gin.Context) {
-	fileMd5 := c.Query("fileMd5")
-	fileName := c.Query("fileName")
-	filePath, err := utils.MakeFile(fileName, fileMd5)
-	if err != nil {
-		global.GVA_LOG.Error("文件创建失败!", zap.Error(err))
-		response.FailWithDetailed(exampleRes.FilePathResponse{FilePath: filePath}, "文件创建失败", c)
-	} else {
-		response.OkWithDetailed(exampleRes.FilePathResponse{FilePath: filePath}, "文件创建成功", c)
-	}
-}
-
-// RemoveChunk
-// @Tags      ExaFileUploadAndDownload
-// @Summary   删除切片
-// @Security  ApiKeyAuth
-// @accept    multipart/form-data
-// @Produce   application/json
-// @Param     file  formData  file                           true  "删除缓存切片"
-// @Success   200   {object}  response.Response{msg=string}  "删除切片"
-// @Router    /fileUploadAndDownload/removeChunk [post]
-func (b *FileUploadAndDownloadApi) RemoveChunk(c *gin.Context) {
-	var file example.ExaFile
-	err := c.ShouldBindJSON(&file)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.RemoveChunk(file.FileMd5)
-	if err != nil {
-		global.GVA_LOG.Error("缓存切片删除失败!", zap.Error(err))
-		return
-	}
-	err = fileUploadAndDownloadService.DeleteFileChunk(file.FileMd5, file.FilePath)
-	if err != nil {
-		global.GVA_LOG.Error(err.Error(), zap.Error(err))
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	response.OkWithMessage("缓存切片删除成功", c)
-}

+ 0 - 176
server/api/v1/example/exa_customer.go

@@ -1,176 +0,0 @@
-package example
-
-import (
-	"github.com/flipped-aurora/gin-vue-admin/server/global"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/example"
-	exampleRes "github.com/flipped-aurora/gin-vue-admin/server/model/example/response"
-	"github.com/flipped-aurora/gin-vue-admin/server/utils"
-	"github.com/gin-gonic/gin"
-	"go.uber.org/zap"
-)
-
-type CustomerApi struct{}
-
-// CreateExaCustomer
-// @Tags      ExaCustomer
-// @Summary   创建客户
-// @Security  ApiKeyAuth
-// @accept    application/json
-// @Produce   application/json
-// @Param     data  body      example.ExaCustomer            true  "客户用户名, 客户手机号码"
-// @Success   200   {object}  response.Response{msg=string}  "创建客户"
-// @Router    /customer/customer [post]
-func (e *CustomerApi) CreateExaCustomer(c *gin.Context) {
-	var customer example.ExaCustomer
-	err := c.ShouldBindJSON(&customer)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.Verify(customer, utils.CustomerVerify)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	customer.SysUserID = utils.GetUserID(c)
-	customer.SysUserAuthorityID = utils.GetUserAuthorityId(c)
-	err = customerService.CreateExaCustomer(customer)
-	if err != nil {
-		global.GVA_LOG.Error("创建失败!", zap.Error(err))
-		response.FailWithMessage("创建失败", c)
-		return
-	}
-	response.OkWithMessage("创建成功", c)
-}
-
-// DeleteExaCustomer
-// @Tags      ExaCustomer
-// @Summary   删除客户
-// @Security  ApiKeyAuth
-// @accept    application/json
-// @Produce   application/json
-// @Param     data  body      example.ExaCustomer            true  "客户ID"
-// @Success   200   {object}  response.Response{msg=string}  "删除客户"
-// @Router    /customer/customer [delete]
-func (e *CustomerApi) DeleteExaCustomer(c *gin.Context) {
-	var customer example.ExaCustomer
-	err := c.ShouldBindJSON(&customer)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.Verify(customer.GVA_MODEL, utils.IdVerify)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = customerService.DeleteExaCustomer(customer)
-	if err != nil {
-		global.GVA_LOG.Error("删除失败!", zap.Error(err))
-		response.FailWithMessage("删除失败", c)
-		return
-	}
-	response.OkWithMessage("删除成功", c)
-}
-
-// UpdateExaCustomer
-// @Tags      ExaCustomer
-// @Summary   更新客户信息
-// @Security  ApiKeyAuth
-// @accept    application/json
-// @Produce   application/json
-// @Param     data  body      example.ExaCustomer            true  "客户ID, 客户信息"
-// @Success   200   {object}  response.Response{msg=string}  "更新客户信息"
-// @Router    /customer/customer [put]
-func (e *CustomerApi) UpdateExaCustomer(c *gin.Context) {
-	var customer example.ExaCustomer
-	err := c.ShouldBindJSON(&customer)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.Verify(customer.GVA_MODEL, utils.IdVerify)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.Verify(customer, utils.CustomerVerify)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = customerService.UpdateExaCustomer(&customer)
-	if err != nil {
-		global.GVA_LOG.Error("更新失败!", zap.Error(err))
-		response.FailWithMessage("更新失败", c)
-		return
-	}
-	response.OkWithMessage("更新成功", c)
-}
-
-// GetExaCustomer
-// @Tags      ExaCustomer
-// @Summary   获取单一客户信息
-// @Security  ApiKeyAuth
-// @accept    application/json
-// @Produce   application/json
-// @Param     data  query     example.ExaCustomer                                                true  "客户ID"
-// @Success   200   {object}  response.Response{data=exampleRes.ExaCustomerResponse,msg=string}  "获取单一客户信息,返回包括客户详情"
-// @Router    /customer/customer [get]
-func (e *CustomerApi) GetExaCustomer(c *gin.Context) {
-	var customer example.ExaCustomer
-	err := c.ShouldBindQuery(&customer)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.Verify(customer.GVA_MODEL, utils.IdVerify)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	data, err := customerService.GetExaCustomer(customer.ID)
-	if err != nil {
-		global.GVA_LOG.Error("获取失败!", zap.Error(err))
-		response.FailWithMessage("获取失败", c)
-		return
-	}
-	response.OkWithDetailed(exampleRes.ExaCustomerResponse{Customer: data}, "获取成功", c)
-}
-
-// GetExaCustomerList
-// @Tags      ExaCustomer
-// @Summary   分页获取权限客户列表
-// @Security  ApiKeyAuth
-// @accept    application/json
-// @Produce   application/json
-// @Param     data  query     request.PageInfo                                        true  "页码, 每页大小"
-// @Success   200   {object}  response.Response{data=response.PageResult,msg=string}  "分页获取权限客户列表,返回包括列表,总数,页码,每页数量"
-// @Router    /customer/customerList [get]
-func (e *CustomerApi) GetExaCustomerList(c *gin.Context) {
-	var pageInfo request.PageInfo
-	err := c.ShouldBindQuery(&pageInfo)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = utils.Verify(pageInfo, utils.PageInfoVerify)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	customerList, total, err := customerService.GetCustomerInfoList(utils.GetUserAuthorityId(c), pageInfo)
-	if err != nil {
-		global.GVA_LOG.Error("获取失败!", zap.Error(err))
-		response.FailWithMessage("获取失败"+err.Error(), c)
-		return
-	}
-	response.OkWithDetailed(response.PageResult{
-		List:     customerList,
-		Total:    total,
-		Page:     pageInfo.Page,
-		PageSize: pageInfo.PageSize,
-	}, "获取成功", c)
-}

+ 0 - 110
server/api/v1/example/exa_file_upload_download.go

@@ -1,110 +0,0 @@
-package example
-
-import (
-	"github.com/flipped-aurora/gin-vue-admin/server/global"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/example"
-	exampleRes "github.com/flipped-aurora/gin-vue-admin/server/model/example/response"
-	"github.com/gin-gonic/gin"
-	"go.uber.org/zap"
-)
-
-type FileUploadAndDownloadApi struct{}
-
-// UploadFile
-// @Tags      ExaFileUploadAndDownload
-// @Summary   上传文件示例
-// @Security  ApiKeyAuth
-// @accept    multipart/form-data
-// @Produce   application/json
-// @Param     file  formData  file                                                           true  "上传文件示例"
-// @Success   200   {object}  response.Response{data=exampleRes.ExaFileResponse,msg=string}  "上传文件示例,返回包括文件详情"
-// @Router    /fileUploadAndDownload/upload [post]
-func (b *FileUploadAndDownloadApi) UploadFile(c *gin.Context) {
-	var file example.ExaFileUploadAndDownload
-	noSave := c.DefaultQuery("noSave", "0")
-	_, header, err := c.Request.FormFile("file")
-	if err != nil {
-		global.GVA_LOG.Error("接收文件失败!", zap.Error(err))
-		response.FailWithMessage("接收文件失败", c)
-		return
-	}
-	file, err = fileUploadAndDownloadService.UploadFile(header, noSave) // 文件上传后拿到文件路径
-	if err != nil {
-		global.GVA_LOG.Error("修改数据库链接失败!", zap.Error(err))
-		response.FailWithMessage("修改数据库链接失败", c)
-		return
-	}
-	response.OkWithDetailed(exampleRes.ExaFileResponse{File: file}, "上传成功", c)
-}
-
-// EditFileName 编辑文件名或者备注
-func (b *FileUploadAndDownloadApi) EditFileName(c *gin.Context) {
-	var file example.ExaFileUploadAndDownload
-	err := c.ShouldBindJSON(&file)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	err = fileUploadAndDownloadService.EditFileName(file)
-	if err != nil {
-		global.GVA_LOG.Error("编辑失败!", zap.Error(err))
-		response.FailWithMessage("编辑失败", c)
-		return
-	}
-	response.OkWithMessage("编辑成功", c)
-}
-
-// DeleteFile
-// @Tags      ExaFileUploadAndDownload
-// @Summary   删除文件
-// @Security  ApiKeyAuth
-// @Produce   application/json
-// @Param     data  body      example.ExaFileUploadAndDownload  true  "传入文件里面id即可"
-// @Success   200   {object}  response.Response{msg=string}     "删除文件"
-// @Router    /fileUploadAndDownload/deleteFile [post]
-func (b *FileUploadAndDownloadApi) DeleteFile(c *gin.Context) {
-	var file example.ExaFileUploadAndDownload
-	err := c.ShouldBindJSON(&file)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	if err := fileUploadAndDownloadService.DeleteFile(file); err != nil {
-		global.GVA_LOG.Error("删除失败!", zap.Error(err))
-		response.FailWithMessage("删除失败", c)
-		return
-	}
-	response.OkWithMessage("删除成功", c)
-}
-
-// GetFileList
-// @Tags      ExaFileUploadAndDownload
-// @Summary   分页文件列表
-// @Security  ApiKeyAuth
-// @accept    application/json
-// @Produce   application/json
-// @Param     data  body      request.PageInfo                                        true  "页码, 每页大小"
-// @Success   200   {object}  response.Response{data=response.PageResult,msg=string}  "分页文件列表,返回包括列表,总数,页码,每页数量"
-// @Router    /fileUploadAndDownload/getFileList [post]
-func (b *FileUploadAndDownloadApi) GetFileList(c *gin.Context) {
-	var pageInfo request.PageInfo
-	err := c.ShouldBindJSON(&pageInfo)
-	if err != nil {
-		response.FailWithMessage(err.Error(), c)
-		return
-	}
-	list, total, err := fileUploadAndDownloadService.GetFileRecordInfoList(pageInfo)
-	if err != nil {
-		global.GVA_LOG.Error("获取失败!", zap.Error(err))
-		response.FailWithMessage("获取失败", c)
-		return
-	}
-	response.OkWithDetailed(response.PageResult{
-		List:     list,
-		Total:    total,
-		Page:     pageInfo.Page,
-		PageSize: pageInfo.PageSize,
-	}, "获取成功", c)
-}

+ 14 - 17
server/initialize/router.go

@@ -41,7 +41,6 @@ func Routers() *gin.Engine {
 
 	InstallPlugin(Router) // 安装插件
 	systemRouter := router.RouterGroupApp.System
-	exampleRouter := router.RouterGroupApp.Example
 	// 如果想要不使用nginx代理前端网页,可以修改 web/.env.production 下的
 	// VUE_APP_BASE_API = /
 	// VUE_APP_BASE_PATH = http://localhost
@@ -74,22 +73,20 @@ func Routers() *gin.Engine {
 	PrivateGroup := Router.Group(global.GVA_CONFIG.System.RouterPrefix)
 	PrivateGroup.Use(middleware.JWTAuth()).Use(middleware.CasbinHandler())
 	{
-		systemRouter.InitApiRouter(PrivateGroup, PublicGroup)       // 注册功能api路由
-		systemRouter.InitJwtRouter(PrivateGroup)                    // jwt相关路由
-		systemRouter.InitUserRouter(PrivateGroup)                   // 注册用户路由
-		systemRouter.InitMenuRouter(PrivateGroup)                   // 注册menu路由
-		systemRouter.InitSystemRouter(PrivateGroup)                 // system相关路由
-		systemRouter.InitCasbinRouter(PrivateGroup)                 // 权限相关路由
-		systemRouter.InitAutoCodeRouter(PrivateGroup)               // 创建自动化代码
-		systemRouter.InitAuthorityRouter(PrivateGroup)              // 注册角色路由
-		systemRouter.InitSysDictionaryRouter(PrivateGroup)          // 字典管理
-		systemRouter.InitAutoCodeHistoryRouter(PrivateGroup)        // 自动化代码历史
-		systemRouter.InitSysOperationRecordRouter(PrivateGroup)     // 操作记录
-		systemRouter.InitSysDictionaryDetailRouter(PrivateGroup)    // 字典详情管理
-		systemRouter.InitAuthorityBtnRouterRouter(PrivateGroup)     // 字典详情管理
-		systemRouter.InitSysExportTemplateRouter(PrivateGroup)      // 导出模板
-		exampleRouter.InitCustomerRouter(PrivateGroup)              // 客户路由
-		exampleRouter.InitFileUploadAndDownloadRouter(PrivateGroup) // 文件上传下载功能路由
+		systemRouter.InitApiRouter(PrivateGroup, PublicGroup)    // 注册功能api路由
+		systemRouter.InitJwtRouter(PrivateGroup)                 // jwt相关路由
+		systemRouter.InitUserRouter(PrivateGroup)                // 注册用户路由
+		systemRouter.InitMenuRouter(PrivateGroup)                // 注册menu路由
+		systemRouter.InitSystemRouter(PrivateGroup)              // system相关路由
+		systemRouter.InitCasbinRouter(PrivateGroup)              // 权限相关路由
+		systemRouter.InitAutoCodeRouter(PrivateGroup)            // 创建自动化代码
+		systemRouter.InitAuthorityRouter(PrivateGroup)           // 注册角色路由
+		systemRouter.InitSysDictionaryRouter(PrivateGroup)       // 字典管理
+		systemRouter.InitAutoCodeHistoryRouter(PrivateGroup)     // 自动化代码历史
+		systemRouter.InitSysOperationRecordRouter(PrivateGroup)  // 操作记录
+		systemRouter.InitSysDictionaryDetailRouter(PrivateGroup) // 字典详情管理
+		systemRouter.InitAuthorityBtnRouterRouter(PrivateGroup)  // 字典详情管理
+		systemRouter.InitSysExportTemplateRouter(PrivateGroup)   // 导出模板
 
 	}
 

+ 1 - 3
server/router/enter.go

@@ -1,13 +1,11 @@
 package router
 
 import (
-	"github.com/flipped-aurora/gin-vue-admin/server/router/example"
 	"github.com/flipped-aurora/gin-vue-admin/server/router/system"
 )
 
 type RouterGroup struct {
-	System  system.RouterGroup
-	Example example.RouterGroup
+	System system.RouterGroup
 }
 
 var RouterGroupApp = new(RouterGroup)

+ 0 - 6
server/router/example/enter.go

@@ -1,6 +0,0 @@
-package example
-
-type RouterGroup struct {
-	CustomerRouter
-	FileUploadAndDownloadRouter
-}

+ 0 - 24
server/router/example/exa_customer.go

@@ -1,24 +0,0 @@
-package example
-
-import (
-	v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
-	"github.com/flipped-aurora/gin-vue-admin/server/middleware"
-	"github.com/gin-gonic/gin"
-)
-
-type CustomerRouter struct{}
-
-func (e *CustomerRouter) InitCustomerRouter(Router *gin.RouterGroup) {
-	customerRouter := Router.Group("customer").Use(middleware.OperationRecord())
-	customerRouterWithoutRecord := Router.Group("customer")
-	exaCustomerApi := v1.ApiGroupApp.ExampleApiGroup.CustomerApi
-	{
-		customerRouter.POST("customer", exaCustomerApi.CreateExaCustomer)   // 创建客户
-		customerRouter.PUT("customer", exaCustomerApi.UpdateExaCustomer)    // 更新客户
-		customerRouter.DELETE("customer", exaCustomerApi.DeleteExaCustomer) // 删除客户
-	}
-	{
-		customerRouterWithoutRecord.GET("customer", exaCustomerApi.GetExaCustomer)         // 获取单一客户信息
-		customerRouterWithoutRecord.GET("customerList", exaCustomerApi.GetExaCustomerList) // 获取客户列表
-	}
-}

+ 0 - 23
server/router/example/exa_file_upload_and_download.go

@@ -1,23 +0,0 @@
-package example
-
-import (
-	v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
-	"github.com/gin-gonic/gin"
-)
-
-type FileUploadAndDownloadRouter struct{}
-
-func (e *FileUploadAndDownloadRouter) InitFileUploadAndDownloadRouter(Router *gin.RouterGroup) {
-	fileUploadAndDownloadRouter := Router.Group("fileUploadAndDownload")
-	exaFileUploadAndDownloadApi := v1.ApiGroupApp.ExampleApiGroup.FileUploadAndDownloadApi
-	{
-		fileUploadAndDownloadRouter.POST("upload", exaFileUploadAndDownloadApi.UploadFile)                                 // 上传文件
-		fileUploadAndDownloadRouter.POST("getFileList", exaFileUploadAndDownloadApi.GetFileList)                           // 获取上传文件列表
-		fileUploadAndDownloadRouter.POST("deleteFile", exaFileUploadAndDownloadApi.DeleteFile)                             // 删除指定文件
-		fileUploadAndDownloadRouter.POST("editFileName", exaFileUploadAndDownloadApi.EditFileName)                         // 编辑文件名或者备注
-		fileUploadAndDownloadRouter.POST("breakpointContinue", exaFileUploadAndDownloadApi.BreakpointContinue)             // 断点续传
-		fileUploadAndDownloadRouter.GET("findFile", exaFileUploadAndDownloadApi.FindFile)                                  // 查询当前文件成功的切片
-		fileUploadAndDownloadRouter.POST("breakpointContinueFinish", exaFileUploadAndDownloadApi.BreakpointContinueFinish) // 切片传输完成
-		fileUploadAndDownloadRouter.POST("removeChunk", exaFileUploadAndDownloadApi.RemoveChunk)                           // 删除切片
-	}
-}

+ 1 - 3
server/service/enter.go

@@ -1,13 +1,11 @@
 package service
 
 import (
-	"github.com/flipped-aurora/gin-vue-admin/server/service/example"
 	"github.com/flipped-aurora/gin-vue-admin/server/service/system"
 )
 
 type ServiceGroup struct {
-	SystemServiceGroup  system.ServiceGroup
-	ExampleServiceGroup example.ServiceGroup
+	SystemServiceGroup system.ServiceGroup
 }
 
 var ServiceGroupApp = new(ServiceGroup)

+ 0 - 6
server/service/example/enter.go

@@ -1,6 +0,0 @@
-package example
-
-type ServiceGroup struct {
-	CustomerService
-	FileUploadAndDownloadService
-}

+ 0 - 69
server/service/example/exa_breakpoint_continue.go

@@ -1,69 +0,0 @@
-package example
-
-import (
-	"errors"
-
-	"github.com/flipped-aurora/gin-vue-admin/server/global"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/example"
-	"gorm.io/gorm"
-)
-
-type FileUploadAndDownloadService struct{}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: FindOrCreateFile
-//@description: 上传文件时检测当前文件属性,如果没有文件则创建,有则返回文件的当前切片
-//@param: fileMd5 string, fileName string, chunkTotal int
-//@return: file model.ExaFile, err error
-
-func (e *FileUploadAndDownloadService) FindOrCreateFile(fileMd5 string, fileName string, chunkTotal int) (file example.ExaFile, err error) {
-	var cfile example.ExaFile
-	cfile.FileMd5 = fileMd5
-	cfile.FileName = fileName
-	cfile.ChunkTotal = chunkTotal
-
-	if errors.Is(global.GVA_DB.Where("file_md5 = ? AND is_finish = ?", fileMd5, true).First(&file).Error, gorm.ErrRecordNotFound) {
-		err = global.GVA_DB.Where("file_md5 = ? AND file_name = ?", fileMd5, fileName).Preload("ExaFileChunk").FirstOrCreate(&file, cfile).Error
-		return file, err
-	}
-	cfile.IsFinish = true
-	cfile.FilePath = file.FilePath
-	err = global.GVA_DB.Create(&cfile).Error
-	return cfile, err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: CreateFileChunk
-//@description: 创建文件切片记录
-//@param: id uint, fileChunkPath string, fileChunkNumber int
-//@return: error
-
-func (e *FileUploadAndDownloadService) CreateFileChunk(id uint, fileChunkPath string, fileChunkNumber int) error {
-	var chunk example.ExaFileChunk
-	chunk.FileChunkPath = fileChunkPath
-	chunk.ExaFileID = id
-	chunk.FileChunkNumber = fileChunkNumber
-	err := global.GVA_DB.Create(&chunk).Error
-	return err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: DeleteFileChunk
-//@description: 删除文件切片记录
-//@param: fileMd5 string, fileName string, filePath string
-//@return: error
-
-func (e *FileUploadAndDownloadService) DeleteFileChunk(fileMd5 string, filePath string) error {
-	var chunks []example.ExaFileChunk
-	var file example.ExaFile
-	err := global.GVA_DB.Where("file_md5 = ? ", fileMd5).First(&file).
-		Updates(map[string]interface{}{
-			"IsFinish":  true,
-			"file_path": filePath,
-		}).Error
-	if err != nil {
-		return err
-	}
-	err = global.GVA_DB.Where("exa_file_id = ?", file.ID).Delete(&chunks).Unscoped().Error
-	return err
-}

+ 0 - 85
server/service/example/exa_customer.go

@@ -1,85 +0,0 @@
-package example
-
-import (
-	"github.com/flipped-aurora/gin-vue-admin/server/global"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/example"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/system"
-	systemService "github.com/flipped-aurora/gin-vue-admin/server/service/system"
-)
-
-type CustomerService struct{}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: CreateExaCustomer
-//@description: 创建客户
-//@param: e model.ExaCustomer
-//@return: err error
-
-func (exa *CustomerService) CreateExaCustomer(e example.ExaCustomer) (err error) {
-	err = global.GVA_DB.Create(&e).Error
-	return err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: DeleteFileChunk
-//@description: 删除客户
-//@param: e model.ExaCustomer
-//@return: err error
-
-func (exa *CustomerService) DeleteExaCustomer(e example.ExaCustomer) (err error) {
-	err = global.GVA_DB.Delete(&e).Error
-	return err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: UpdateExaCustomer
-//@description: 更新客户
-//@param: e *model.ExaCustomer
-//@return: err error
-
-func (exa *CustomerService) UpdateExaCustomer(e *example.ExaCustomer) (err error) {
-	err = global.GVA_DB.Save(e).Error
-	return err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: GetExaCustomer
-//@description: 获取客户信息
-//@param: id uint
-//@return: customer model.ExaCustomer, err error
-
-func (exa *CustomerService) GetExaCustomer(id uint) (customer example.ExaCustomer, err error) {
-	err = global.GVA_DB.Where("id = ?", id).First(&customer).Error
-	return
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: GetCustomerInfoList
-//@description: 分页获取客户列表
-//@param: sysUserAuthorityID string, info request.PageInfo
-//@return: list interface{}, total int64, err error
-
-func (exa *CustomerService) GetCustomerInfoList(sysUserAuthorityID uint, info request.PageInfo) (list interface{}, total int64, err error) {
-	limit := info.PageSize
-	offset := info.PageSize * (info.Page - 1)
-	db := global.GVA_DB.Model(&example.ExaCustomer{})
-	var a system.SysAuthority
-	a.AuthorityId = sysUserAuthorityID
-	auth, err := systemService.AuthorityServiceApp.GetAuthorityInfo(a)
-	if err != nil {
-		return
-	}
-	var dataId []uint
-	for _, v := range auth.DataAuthorityId {
-		dataId = append(dataId, v.AuthorityId)
-	}
-	var CustomerList []example.ExaCustomer
-	err = db.Where("sys_user_authority_id in ?", dataId).Count(&total).Error
-	if err != nil {
-		return CustomerList, total, err
-	} else {
-		err = db.Limit(limit).Offset(offset).Preload("SysUser").Where("sys_user_authority_id in ?", dataId).Find(&CustomerList).Error
-	}
-	return CustomerList, total, err
-}

+ 0 - 108
server/service/example/exa_file_upload_download.go

@@ -1,108 +0,0 @@
-package example
-
-import (
-	"errors"
-	"mime/multipart"
-	"strings"
-
-	"github.com/flipped-aurora/gin-vue-admin/server/global"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
-	"github.com/flipped-aurora/gin-vue-admin/server/model/example"
-	"github.com/flipped-aurora/gin-vue-admin/server/utils/upload"
-)
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: Upload
-//@description: 创建文件上传记录
-//@param: file model.ExaFileUploadAndDownload
-//@return: error
-
-func (e *FileUploadAndDownloadService) Upload(file example.ExaFileUploadAndDownload) error {
-	return global.GVA_DB.Create(&file).Error
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: FindFile
-//@description: 查询文件记录
-//@param: id uint
-//@return: model.ExaFileUploadAndDownload, error
-
-func (e *FileUploadAndDownloadService) FindFile(id uint) (example.ExaFileUploadAndDownload, error) {
-	var file example.ExaFileUploadAndDownload
-	err := global.GVA_DB.Where("id = ?", id).First(&file).Error
-	return file, err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: DeleteFile
-//@description: 删除文件记录
-//@param: file model.ExaFileUploadAndDownload
-//@return: err error
-
-func (e *FileUploadAndDownloadService) DeleteFile(file example.ExaFileUploadAndDownload) (err error) {
-	var fileFromDb example.ExaFileUploadAndDownload
-	fileFromDb, err = e.FindFile(file.ID)
-	if err != nil {
-		return
-	}
-	oss := upload.NewOss()
-	if err = oss.DeleteFile(fileFromDb.Key); err != nil {
-		return errors.New("文件删除失败")
-	}
-	err = global.GVA_DB.Where("id = ?", file.ID).Unscoped().Delete(&file).Error
-	return err
-}
-
-// EditFileName 编辑文件名或者备注
-func (e *FileUploadAndDownloadService) EditFileName(file example.ExaFileUploadAndDownload) (err error) {
-	var fileFromDb example.ExaFileUploadAndDownload
-	return global.GVA_DB.Where("id = ?", file.ID).First(&fileFromDb).Update("name", file.Name).Error
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: GetFileRecordInfoList
-//@description: 分页获取数据
-//@param: info request.PageInfo
-//@return: list interface{}, total int64, err error
-
-func (e *FileUploadAndDownloadService) GetFileRecordInfoList(info request.PageInfo) (list interface{}, total int64, err error) {
-	limit := info.PageSize
-	offset := info.PageSize * (info.Page - 1)
-	keyword := info.Keyword
-	db := global.GVA_DB.Model(&example.ExaFileUploadAndDownload{})
-	var fileLists []example.ExaFileUploadAndDownload
-	if len(keyword) > 0 {
-		db = db.Where("name LIKE ?", "%"+keyword+"%")
-	}
-	err = db.Count(&total).Error
-	if err != nil {
-		return
-	}
-	err = db.Limit(limit).Offset(offset).Order("updated_at desc").Find(&fileLists).Error
-	return fileLists, total, err
-}
-
-//@author: [piexlmax](https://github.com/piexlmax)
-//@function: UploadFile
-//@description: 根据配置文件判断是文件上传到本地或者七牛云
-//@param: header *multipart.FileHeader, noSave string
-//@return: file model.ExaFileUploadAndDownload, err error
-
-func (e *FileUploadAndDownloadService) UploadFile(header *multipart.FileHeader, noSave string) (file example.ExaFileUploadAndDownload, err error) {
-	oss := upload.NewOss()
-	filePath, key, uploadErr := oss.UploadFile(header)
-	if uploadErr != nil {
-		panic(uploadErr)
-	}
-	s := strings.Split(header.Filename, ".")
-	f := example.ExaFileUploadAndDownload{
-		Url:  filePath,
-		Name: header.Filename,
-		Tag:  s[len(s)-1],
-		Key:  key,
-	}
-	if noSave == "0" {
-		return f, e.Upload(f)
-	}
-	return f, nil
-}

BIN
web/favicon.ico


BIN
web/src/assets/lc_logo.jpg


BIN
web/src/assets/logo.png


+ 2 - 43
web/src/core/config.js

@@ -3,8 +3,8 @@
  */
 
 const config = {
-  appName: 'Gin-Vue-Admin',
-  appLogo: 'https://www.gin-vue-admin.com/img/logo.png',
+  appName: '龙弛财务',
+  appLogo: '../../assets/logo.png',
   showViteLogo: true,
   logs: [],
 }
@@ -12,47 +12,6 @@ const config = {
 export const viteLogo = (env) => {
   if (config.showViteLogo) {
     const chalk = require('chalk')
-    console.log(
-      chalk.green(
-        `> 欢迎使用Gin-Vue-Admin,开源地址:https://github.com/flipped-aurora/gin-vue-admin`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> 当前版本:v2.6.3`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> 加群方式:微信:shouzi_1994 QQ群:470239250`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> GVA讨论社区:https://support.qq.com/products/371961`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> 插件市场:https://plugin.gin-vue-admin.com`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> 默认自动化文档地址:http://127.0.0.1:${env.VITE_SERVER_PORT}/swagger/index.html`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> 默认前端文件运行地址:http://127.0.0.1:${env.VITE_CLI_PORT}`
-      )
-    )
-    console.log(
-      chalk.green(
-        `> 如果项目让您获得了收益,希望您能请团队喝杯可乐:https://www.gin-vue-admin.com/coffee/index.html`
-      )
-    )
-    console.log('\n')
   }
 }
 

+ 0 - 10
web/src/core/gin-vue-admin.js

@@ -8,15 +8,5 @@ import { register } from './global'
 export default {
   install: (app) => {
     register(app)
-    console.log(`
-       欢迎使用 Gin-Vue-Admin
-       当前版本:v2.6.3
-       加群方式:微信:shouzi_1994 QQ群:622360840
-       GVA讨论社区:https://support.qq.com/products/371961
-       插件市场:https://plugin.gin-vue-admin.com
-       默认自动化文档地址:http://127.0.0.1:${import.meta.env.VITE_SERVER_PORT}/swagger/index.html
-       默认前端文件运行地址:http://127.0.0.1:${import.meta.env.VITE_CLI_PORT}
-       如果项目让您获得了收益,希望您能请团队喝杯可乐:https://www.gin-vue-admin.com/coffee/index.html
-    `)
   }
 }

+ 0 - 208
web/src/view/about/index.vue

@@ -1,208 +0,0 @@
-<template>
-  <div>
-    <el-row :gutter="10">
-      <el-col :span="12">
-        <el-card>
-          <template #header>
-            <el-divider>gin-vue-admin</el-divider>
-          </template>
-          <div>
-            <el-row>
-              <el-col
-                :span="8"
-                :offset="8"
-              >
-                <a href="https://github.com/flipped-aurora/gin-vue-admin">
-                  <img
-                    class="org-img dom-center"
-                    src="@/assets/logo.png"
-                    alt="gin-vue-admin"
-                  >
-                </a>
-              </el-col>
-            </el-row>
-            <el-row :gutter="10">
-              <el-col :span="8">
-                <a href="https://github.com/flipped-aurora/gin-vue-admin">
-                  <img
-                    class="dom-center"
-                    src="https://img.shields.io/github/watchers/flipped-aurora/gin-vue-admin.svg?label=Watch"
-                    alt=""
-                  >
-                </a>
-              </el-col>
-              <el-col :span="8">
-                <a href="https://github.com/flipped-aurora/gin-vue-admin">
-                  <img
-                    class="dom-center"
-                    src="https://img.shields.io/github/stars/flipped-aurora/gin-vue-admin.svg?style=social"
-                    alt=""
-                  >
-                </a>
-              </el-col>
-              <el-col :span="8">
-                <a href="https://github.com/flipped-aurora/gin-vue-admin">
-                  <img
-                    class="dom-center"
-                    src="https://img.shields.io/github/forks/flipped-aurora/gin-vue-admin.svg?label=Fork"
-                    alt=""
-                  >
-                </a>
-              </el-col>
-            </el-row>
-          </div>
-        </el-card>
-        <el-card style="margin-top: 20px">
-          <template #header>
-            <div>flipped-aurora团队</div>
-          </template>
-          <div>
-            <el-row>
-              <el-col
-                :span="8"
-                :offset="8"
-              >
-                <a href="https://github.com/flipped-aurora">
-                  <img
-                    class="org-img dom-center"
-                    src="@/assets/flipped-aurora.png"
-                    alt="flipped-aurora"
-                  >
-                </a>
-              </el-col>
-            </el-row>
-            <el-row
-              style="margin-left: 40px"
-              :gutter="20"
-            >
-              <el-col
-                v-for="(item, index) in members"
-                :key="index"
-                :span="8"
-              >
-                <a :href="item.html_url">
-                  <img
-                    class="avatar-img"
-                    :src="item.avatar_url"
-                  >
-                  <a
-                    class="author-name"
-                    style=""
-                  >{{ item.login }}</a>
-                </a>
-              </el-col>
-            </el-row>
-          </div>
-        </el-card>
-      </el-col>
-      <el-col :span="12">
-        <el-card>
-          <template #header>
-            <div>提交记录</div>
-          </template>
-          <div>
-            <el-timeline>
-              <el-timeline-item
-                v-for="(item,index) in dataTimeline"
-                :key="index"
-                :timestamp="item.from"
-                placement="top"
-              >
-                <el-card>
-                  <h4>{{ item.title }}</h4>
-                  <p>{{ item.message }}</p>
-                </el-card>
-              </el-timeline-item>
-            </el-timeline>
-          </div>
-          <el-button
-            class="load-more"
-            type="primary"
-            link
-            @click="loadMore"
-          >Load more</el-button>
-        </el-card>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script setup>
-import { ref } from 'vue'
-import { Commits, Members } from '@/api/github'
-import { formatTimeToStr } from '@/utils/date'
-const page = ref(0)
-
-defineOptions({
-  name: 'About'
-})
-
-const loadMore = () => {
-  page.value++
-  loadCommits()
-}
-
-const dataTimeline = ref([])
-const loadCommits = () => {
-  Commits(page.value).then(({ data }) => {
-    data.forEach((element) => {
-      if (element.commit.message) {
-        dataTimeline.value.push({
-          from: formatTimeToStr(element.commit.author.date, 'yyyy-MM-dd'),
-          title: element.commit.author.name,
-          showDayAndMonth: true,
-          message: element.commit.message,
-        })
-      }
-    })
-  })
-}
-
-const members = ref([])
-const loadMembers = () => {
-  Members().then(({ data }) => {
-    members.value = data
-    members.value.sort()
-  })
-}
-
-loadCommits()
-loadMembers()
-
-</script>
-
-<style scoped>
-.load-more {
-  margin-left: 120px;
-}
-
-.avatar-img {
-  float: left;
-  height: 40px;
-  width: 40px;
-  border-radius: 50%;
-  -webkit-border-radius: 50%;
-  -moz-border-radius: 50%;
-  margin-top: 15px;
-}
-
-.org-img {
-  height: 150px;
-  width: 150px;
-}
-
-.author-name {
-  float: left;
-  line-height: 65px !important;
-  margin-left: 10px;
-  color: darkblue;
-  line-height: 100px;
-  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
-    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
-}
-
-.dom-center {
-  margin-left: 50%;
-  transform: translateX(-50%);
-}
-</style>

+ 1 - 86
web/src/view/dashboard/index.vue

@@ -5,62 +5,6 @@
         <div class="gva-top-card-left">
           <div class="gva-top-card-left-title">早安,管理员,请开始一天的工作吧</div>
           <div class="gva-top-card-left-dot">{{ weatherInfo }}</div>
-          <el-row class="my-8 w-[500px]">
-            <el-col
-              :span="8"
-              :xs="24"
-              :sm="8"
-            >
-              <div class="flex items-center">
-                <el-icon class="dashboard-icon">
-                  <sort />
-                </el-icon>
-                今日流量 (1231231)
-              </div>
-            </el-col>
-            <el-col
-              :span="8"
-              :xs="24"
-              :sm="8"
-            >
-              <div class="flex items-center">
-                <el-icon class="dashboard-icon">
-                  <avatar />
-                </el-icon>
-                总用户数 (24001)
-              </div>
-            </el-col>
-            <el-col
-              :span="8"
-              :xs="24"
-              :sm="8"
-            >
-              <div class="flex items-center">
-                <el-icon class="dashboard-icon">
-                  <comment />
-                </el-icon>
-                好评率 (99%)
-              </div>
-            </el-col>
-          </el-row>
-          <div>
-            <div class="gva-top-card-left-item">
-              使用教学:
-              <a
-                style="color:#409EFF"
-                target="view_window"
-                href="https://www.bilibili.com/video/BV1Rg411u7xH/"
-              >https://www.bilibili.com/video/BV1Rg411u7xH</a>
-            </div>
-            <div class="gva-top-card-left-item">
-              插件仓库:
-              <a
-                style="color:#409EFF"
-                target="view_window"
-                href="https://plugin.gin-vue-admin.com/#/layout/home"
-              >https://plugin.gin-vue-admin.com</a>
-            </div>
-          </div>
         </div>
         <img
           src="@/assets/dashboard.png"
@@ -69,36 +13,7 @@
         >
       </div>
     </div>
-    <div class="gva-card-box">
-      <div class="gva-card quick-entrance">
-        <div class="gva-card-title">快捷入口</div>
-        <el-row :gutter="20">
-          <el-col
-            v-for="(card, key) in toolCards"
-            :key="key"
-            :span="4"
-            :xs="8"
-            class="quick-entrance-items"
-            @click="toTarget(card.name)"
-          >
-            <div class="quick-entrance-item">
-              <div
-                class="quick-entrance-item-icon"
-                :style="{ backgroundColor: card.bg }"
-              >
-                <el-icon>
-                  <component
-                    :is="card.icon"
-                    :style="{ color: card.color }"
-                  />
-                </el-icon>
-              </div>
-              <p>{{ card.label }}</p>
-            </div>
-          </el-col>
-        </el-row>
-      </div>
-    </div>
+    
     <div class="gva-card-box">
       <div class="gva-card">
         <div class="gva-card-title">数据统计</div>

+ 1 - 1
web/src/view/dashboard/weather.js

@@ -3,7 +3,7 @@ import axios from 'axios'
 import { ref } from 'vue'
 
 const weatherInfo = ref('今日晴,0℃ - 10℃,天气寒冷,注意添加衣物。')
-const amapKey = '8e8baa8a7317586c29ec694895de6e0a'
+const amapKey = '848573d7d81db5793ed87469c35742b8'
 
 export const useWeatherInfo = () => {
   ip()

+ 0 - 291
web/src/view/example/breakpoint/breakpoint.vue

@@ -1,291 +0,0 @@
-<template>
-  <div class="break-point">
-    <div class="gva-table-box">
-      <el-divider content-position="left">大文件上传</el-divider>
-      <form
-        id="fromCont"
-        method="post"
-      >
-        <div
-          class="fileUpload"
-          @click="inputChange"
-        >
-          选择文件
-          <input
-            v-show="false"
-            id="file"
-            ref="FileInput"
-            multiple="multiple"
-            type="file"
-            @change="choseFile"
-          >
-        </div>
-      </form>
-      <el-button
-        :disabled="limitFileSize"
-        type="primary"
-        class="uploadBtn"
-        @click="getFile"
-      >上传文件</el-button>
-      <div class="el-upload__tip">请上传不超过5MB的文件</div>
-      <div class="list">
-        <transition
-          name="list"
-          tag="p"
-        >
-          <div
-            v-if="file"
-            class="list-item"
-          >
-            <el-icon>
-              <document />
-            </el-icon>
-            <span>{{ file.name }}</span>
-            <span class="percentage">{{ percentage }}%</span>
-            <el-progress
-              :show-text="false"
-              :text-inside="false"
-              :stroke-width="2"
-              :percentage="percentage"
-            />
-          </div>
-        </transition>
-      </div>
-      <div class="tips">此版本为先行体验功能测试版,样式美化和性能优化正在进行中,上传切片文件和合成的完整文件分别再QMPlusserver目录的breakpointDir文件夹和fileDir文件夹</div>
-    </div>
-  </div>
-
-</template>
-
-<script setup>
-import SparkMD5 from 'spark-md5'
-import {
-  findFile,
-  breakpointContinueFinish,
-  removeChunk,
-  breakpointContinue
-} from '@/api/breakpoint'
-import { ref, watch } from 'vue'
-import { ElMessage } from 'element-plus'
-
-defineOptions({
-  name: 'BreakPoint'
-})
-
-const file = ref(null)
-const fileMd5 = ref('')
-const formDataList = ref([])
-const waitUpLoad = ref([])
-const waitNum = ref(NaN)
-const limitFileSize = ref(false)
-const percentage = ref(0)
-const percentageFlage = ref(true)
-
-// 选中文件的函数
-const choseFile = async(e) => {
-  const fileR = new FileReader() // 创建一个reader用来读取文件流
-  const fileInput = e.target.files[0] // 获取当前文件
-  const maxSize = 5 * 1024 * 1024
-  file.value = fileInput // file 丢全局方便后面用 可以改进为func传参形式
-  percentage.value = 0
-  if (file.value.size < maxSize) {
-    fileR.readAsArrayBuffer(file.value) // 把文件读成ArrayBuffer  主要为了保持跟后端的流一致
-    fileR.onload = async e => {
-      // 读成arrayBuffer的回调 e 为方法自带参数 相当于 dom的e 流存在e.target.result 中
-      const blob = e.target.result
-      const spark = new SparkMD5.ArrayBuffer() // 创建md5制造工具 (md5用于检测文件一致性 这里不懂就打电话问我)
-      spark.append(blob) // 文件流丢进工具
-      fileMd5.value = spark.end() // 工具结束 产生一个a 总文件的md5
-      const FileSliceCap = 1 * 1024 * 1024 // 分片字节数
-      let start = 0 // 定义分片开始切的地方
-      let end = 0 // 每片结束切的地方a
-      let i = 0 // 第几片
-      formDataList.value = [] // 分片存储的一个池子 丢全局
-      while (end < file.value.size) {
-        // 当结尾数字大于文件总size的时候 结束切片
-        start = i * FileSliceCap // 计算每片开始位置
-        end = (i + 1) * FileSliceCap // 计算每片结束位置
-        var fileSlice = file.value.slice(start, end) // 开始切  file.slice 为 h5方法 对文件切片 参数为 起止字节数
-        const formData = new window.FormData() // 创建FormData用于存储传给后端的信息
-        formData.append('fileMd5', fileMd5.value) // 存储总文件的Md5 让后端知道自己是谁的切片
-        formData.append('file', fileSlice) // 当前的切片
-        formData.append('chunkNumber', i) // 当前是第几片
-        formData.append('fileName', file.value.name) // 当前文件的文件名 用于后端文件切片的命名  formData.appen 为 formData对象添加参数的方法
-        formDataList.value.push({ key: i, formData }) // 把当前切片信息 自己是第几片 存入我们方才准备好的池子
-        i++
-      }
-      const params = {
-        fileName: file.value.name,
-        fileMd5: fileMd5.value,
-        chunkTotal: formDataList.value.length
-      }
-      const res = await findFile(params)
-      // 全部切完以后 发一个请求给后端 拉当前文件后台存储的切片信息 用于检测有多少上传成功的切片
-      const finishList = res.data.file.ExaFileChunk // 上传成功的切片
-      const IsFinish = res.data.file.IsFinish // 是否是同文件不同命 (文件md5相同 文件名不同 则默认是同一个文件但是不同文件名 此时后台数据库只需要拷贝一下数据库文件即可 不需要上传文件 即秒传功能)
-      if (!IsFinish) {
-        // 当是断点续传时候
-        waitUpLoad.value = formDataList.value.filter(all => {
-          return !(
-            finishList &&
-              finishList.some(fi => fi.FileChunkNumber === all.key)
-          ) // 找出需要上传的切片
-        })
-      } else {
-        waitUpLoad.value = [] // 秒传则没有需要上传的切片
-        ElMessage.success('文件已秒传')
-      }
-      waitNum.value = waitUpLoad.value.length // 记录长度用于百分比展示
-    }
-  } else {
-    limitFileSize.value = true
-    ElMessage('请上传小于5M文件')
-  }
-}
-
-const getFile = () => {
-  // 确定按钮
-  if (file.value === null) {
-    ElMessage('请先上传文件')
-    return
-  }
-  if (percentage.value === 100) {
-    percentageFlage.value = false
-  }
-  sliceFile() // 上传切片
-}
-
-const sliceFile = () => {
-  waitUpLoad.value &&
-        waitUpLoad.value.forEach(item => {
-          // 需要上传的切片
-          item.formData.append('chunkTotal', formDataList.value.length) // 切片总数携带给后台 总有用的
-          const fileR = new FileReader() // 功能同上
-          const fileF = item.formData.get('file')
-          fileR.readAsArrayBuffer(fileF)
-          fileR.onload = e => {
-            const spark = new SparkMD5.ArrayBuffer()
-            spark.append(e.target.result)
-            item.formData.append('chunkMd5', spark.end()) // 获取当前切片md5 后端用于验证切片完整性
-            upLoadFileSlice(item)
-          }
-        })
-}
-
-watch(() => waitNum.value, () => { percentage.value = Math.floor(((formDataList.value.length - waitNum.value) / formDataList.value.length) * 100) })
-
-const upLoadFileSlice = async(item) => {
-  // 切片上传
-  const fileRe = await breakpointContinue(item.formData)
-  if (fileRe.code !== 0) {
-    return
-  }
-  waitNum.value-- // 百分数增加
-  if (waitNum.value === 0) {
-    // 切片传完以后 合成文件
-    const params = {
-      fileName: file.value.name,
-      fileMd5: fileMd5.value
-    }
-    const res = await breakpointContinueFinish(params)
-    if (res.code === 0) {
-      // 合成文件过后 删除缓存切片
-      const params = {
-        fileName: file.value.name,
-        fileMd5: fileMd5.value,
-        filePath: res.data.filePath,
-      }
-      ElMessage.success('上传成功')
-      await removeChunk(params)
-    }
-  }
-}
-
-const FileInput = ref(null)
-const inputChange = () => {
-  FileInput.value.dispatchEvent(new MouseEvent('click'))
-}
-</script>
-
-<style lang='scss' scoped>
-h3 {
-  margin: 40px 0 0;
-}
-ul {
-  list-style-type: none;
-  padding: 0;
-}
-li {
-  display: inline-block;
-  margin: 0 10px;
-}
-a {
-  color: #42b983;
-}
-#fromCont{
-  display: inline-block;
-}
-.fileUpload{
-    padding: 3px 10px;
-    font-size: 12px;
-    height: 20px;
-    line-height: 20px;
-    position: relative;
-    cursor: pointer;
-    color: #000;
-    border: 1px solid #c1c1c1;
-    border-radius: 4px;
-    overflow: hidden;
-    display: inline-block;
-    input{
-      position: absolute;
-      font-size: 100px;
-      right: 0;
-      top: 0;
-      opacity: 0;
-      cursor: pointer;
-    }
-}
- .fileName{
-    display: inline-block;
-    vertical-align: top;
-    margin: 6px 15px 0 15px;
-  }
-  .uploadBtn{
-    position: relative;
-    top: -10px;
-    margin-left: 15px;
-  }
-  .tips{
-    margin-top: 30px;
-    font-size: 14px;
-    font-weight: 400;
-    color: #606266;
-  }
-  .el-divider{
-    margin: 0 0 30px 0;
-  }
-
- .list{
-   margin-top:15px;
- }
- .list-item {
-  display: block;
-  margin-right: 10px;
-  color: #606266;
-  line-height: 25px;
-  margin-bottom: 5px;
-  width: 40%;
-   .percentage{
-          float: right;
-        }
-}
-.list-enter-active, .list-leave-active {
-  transition: all 1s;
-}
-.list-enter, .list-leave-to
-/* .list-leave-active for below version 2.1.8 */ {
-  opacity: 0;
-  transform: translateY(-30px);
-}
-</style>

+ 0 - 232
web/src/view/example/customer/customer.vue

@@ -1,232 +0,0 @@
-<template>
-  <div>
-    <warning-bar title="在资源权限中将此角色的资源权限清空 或者不包含创建者的角色 即可屏蔽此客户资源的显示" />
-    <div class="gva-table-box">
-      <div class="gva-btn-list">
-        <el-button
-          type="primary"
-          icon="plus"
-          @click="openDialog"
-        >新增</el-button>
-      </div>
-      <el-table
-        ref="multipleTable"
-        :data="tableData"
-        style="width: 100%"
-        tooltip-effect="dark"
-        row-key="ID"
-      >
-        <el-table-column
-          type="selection"
-          width="55"
-        />
-        <el-table-column
-          align="left"
-          label="接入日期"
-          width="180"
-        >
-          <template #default="scope">
-            <span>{{ formatDate(scope.row.CreatedAt) }}</span>
-          </template>
-        </el-table-column>
-        <el-table-column
-          align="left"
-          label="姓名"
-          prop="customerName"
-          width="120"
-        />
-        <el-table-column
-          align="left"
-          label="电话"
-          prop="customerPhoneData"
-          width="120"
-        />
-        <el-table-column
-          align="left"
-          label="接入人ID"
-          prop="sysUserId"
-          width="120"
-        />
-        <el-table-column
-          align="left"
-          label="操作"
-          min-width="160"
-        >
-          <template #default="scope">
-            <el-button
-              type="primary"
-              link
-              icon="edit"
-              @click="updateCustomer(scope.row)"
-            >变更</el-button>
-            <el-button
-              type="primary"
-              link
-              icon="delete"
-              @click="deleteCustomer(scope.row)"
-            >删除</el-button>
-          </template>
-        </el-table-column>
-      </el-table>
-      <div class="gva-pagination">
-        <el-pagination
-          :current-page="page"
-          :page-size="pageSize"
-          :page-sizes="[10, 30, 50, 100]"
-          :total="total"
-          layout="total, sizes, prev, pager, next, jumper"
-          @current-change="handleCurrentChange"
-          @size-change="handleSizeChange"
-        />
-      </div>
-    </div>
-    <el-dialog
-      v-model="dialogFormVisible"
-      :before-close="closeDialog"
-      title="客户"
-    >
-      <el-form
-        :inline="true"
-        :model="form"
-        label-width="80px"
-      >
-        <el-form-item label="客户名">
-          <el-input
-            v-model="form.customerName"
-            autocomplete="off"
-          />
-        </el-form-item>
-        <el-form-item label="客户电话">
-          <el-input
-            v-model="form.customerPhoneData"
-            autocomplete="off"
-          />
-        </el-form-item>
-      </el-form>
-      <template #footer>
-        <div class="dialog-footer">
-          <el-button @click="closeDialog">取 消</el-button>
-          <el-button
-            type="primary"
-            @click="enterDialog"
-          >确 定</el-button>
-        </div>
-      </template>
-    </el-dialog>
-  </div>
-</template>
-
-<script setup>
-import {
-  createExaCustomer,
-  updateExaCustomer,
-  deleteExaCustomer,
-  getExaCustomer,
-  getExaCustomerList
-} from '@/api/customer'
-import WarningBar from '@/components/warningBar/warningBar.vue'
-import { ref } from 'vue'
-import { ElMessage, ElMessageBox } from 'element-plus'
-import { formatDate } from '@/utils/format'
-
-defineOptions({
-  name: 'Customer'
-})
-
-const form = ref({
-  customerName: '',
-  customerPhoneData: ''
-})
-
-const page = ref(1)
-const total = ref(0)
-const pageSize = ref(10)
-const tableData = ref([])
-
-// 分页
-const handleSizeChange = (val) => {
-  pageSize.value = val
-  getTableData()
-}
-
-const handleCurrentChange = (val) => {
-  page.value = val
-  getTableData()
-}
-
-// 查询
-const getTableData = async() => {
-  const table = await getExaCustomerList({ page: page.value, pageSize: pageSize.value })
-  if (table.code === 0) {
-    tableData.value = table.data.list
-    total.value = table.data.total
-    page.value = table.data.page
-    pageSize.value = table.data.pageSize
-  }
-}
-
-getTableData()
-
-const dialogFormVisible = ref(false)
-const type = ref('')
-const updateCustomer = async(row) => {
-  const res = await getExaCustomer({ ID: row.ID })
-  type.value = 'update'
-  if (res.code === 0) {
-    form.value = res.data.customer
-    dialogFormVisible.value = true
-  }
-}
-const closeDialog = () => {
-  dialogFormVisible.value = false
-  form.value = {
-    customerName: '',
-    customerPhoneData: ''
-  }
-}
-const deleteCustomer = async(row) => {
-  ElMessageBox.confirm('确定要删除吗?', '提示', {
-    confirmButtonText: '确定',
-    cancelButtonText: '取消',
-    type: 'warning'
-  }).then(async() => {
-    const res = await deleteExaCustomer({ ID: row.ID })
-    if (res.code === 0) {
-      ElMessage({
-        type: 'success',
-        message: '删除成功'
-      })
-      if (tableData.value.length === 1 && page.value > 1) {
-        page.value--
-      }
-      getTableData()
-    }
-  })
-}
-const enterDialog = async() => {
-  let res
-  switch (type.value) {
-    case 'create':
-      res = await createExaCustomer(form.value)
-      break
-    case 'update':
-      res = await updateExaCustomer(form.value)
-      break
-    default:
-      res = await createExaCustomer(form.value)
-      break
-  }
-
-  if (res.code === 0) {
-    closeDialog()
-    getTableData()
-  }
-}
-const openDialog = () => {
-  type.value = 'create'
-  dialogFormVisible.value = true
-}
-
-</script>
-
-<style></style>

+ 0 - 22
web/src/view/example/index.vue

@@ -1,22 +0,0 @@
-<template>
-  <div>
-    <router-view v-slot="{ Component }">
-      <transition
-        mode="out-in"
-        name="el-fade-in-linear"
-      >
-        <keep-alive :include="routerStore.keepAliveRouters">
-          <component :is="Component" />
-        </keep-alive>
-      </transition>
-    </router-view>
-  </div>
-</template>
-
-<script setup>
-import { useRouterStore } from '@/pinia/modules/router'
-const routerStore = useRouterStore()
-defineOptions({
-  name: 'Example'
-})
-</script>

+ 0 - 247
web/src/view/example/upload/upload.vue

@@ -1,247 +0,0 @@
-<template>
-  <div v-loading.fullscreen.lock="fullscreenLoading">
-    <div class="gva-table-box">
-      <warning-bar
-        title="点击“文件名/备注”可以编辑文件名或者备注内容。"
-      />
-      <div class="gva-btn-list">
-        <upload-common
-          :image-common="imageCommon"
-          @on-success="getTableData"
-        />
-        <upload-image
-          :image-url="imageUrl"
-          :file-size="512"
-          :max-w-h="1080"
-          @on-success="getTableData"
-        />
-        <el-input
-          v-model="search.keyword"
-          class="keyword"
-          placeholder="请输入文件名或备注"
-        />
-        <el-button
-          type="primary"
-          icon="search"
-          @click="getTableData"
-        >查询</el-button>
-      </div>
-
-      <el-table :data="tableData">
-        <el-table-column
-          align="left"
-          label="预览"
-          width="100"
-        >
-          <template #default="scope">
-            <CustomPic
-              pic-type="file"
-              :pic-src="scope.row.url"
-              preview
-            />
-          </template>
-        </el-table-column>
-        <el-table-column
-          align="left"
-          label="日期"
-          prop="UpdatedAt"
-          width="180"
-        >
-          <template #default="scope">
-            <div>{{ formatDate(scope.row.UpdatedAt) }}</div>
-          </template>
-        </el-table-column>
-        <el-table-column
-          align="left"
-          label="文件名/备注"
-          prop="name"
-          width="180"
-        >
-          <template #default="scope">
-            <div
-              class="name"
-              @click="editFileNameFunc(scope.row)"
-            >{{ scope.row.name }}</div>
-          </template>
-        </el-table-column>
-        <el-table-column
-          align="left"
-          label="链接"
-          prop="url"
-          min-width="300"
-        />
-        <el-table-column
-          align="left"
-          label="标签"
-          prop="tag"
-          width="100"
-        >
-          <template #default="scope">
-            <el-tag
-              :type="scope.row.tag === 'jpg' ? 'info' : 'success'"
-              disable-transitions
-            >{{ scope.row.tag }}
-            </el-tag>
-          </template>
-        </el-table-column>
-        <el-table-column
-          align="left"
-          label="操作"
-          width="160"
-        >
-          <template #default="scope">
-            <el-button
-              icon="download"
-              type="primary"
-              link
-              @click="downloadFile(scope.row)"
-            >下载</el-button>
-            <el-button
-              icon="delete"
-              type="primary"
-              link
-              @click="deleteFileFunc(scope.row)"
-            >删除</el-button>
-          </template>
-        </el-table-column>
-      </el-table>
-      <div class="gva-pagination">
-        <el-pagination
-          :current-page="page"
-          :page-size="pageSize"
-          :page-sizes="[10, 30, 50, 100]"
-          :style="{ float: 'right', padding: '20px' }"
-          :total="total"
-          layout="total, sizes, prev, pager, next, jumper"
-          @current-change="handleCurrentChange"
-          @size-change="handleSizeChange"
-        />
-      </div>
-    </div>
-  </div>
-</template>
-
-<script setup>
-import { getFileList, deleteFile, editFileName } from '@/api/fileUploadAndDownload'
-import { downloadImage } from '@/utils/downloadImg'
-import CustomPic from '@/components/customPic/index.vue'
-import UploadImage from '@/components/upload/image.vue'
-import UploadCommon from '@/components/upload/common.vue'
-import { formatDate } from '@/utils/format'
-import WarningBar from '@/components/warningBar/warningBar.vue'
-
-import { ref } from 'vue'
-import { ElMessage, ElMessageBox } from 'element-plus'
-
-defineOptions({
-  name: 'Upload',
-})
-
-const path = ref(import.meta.env.VITE_BASE_API)
-
-const imageUrl = ref('')
-const imageCommon = ref('')
-
-const page = ref(1)
-const total = ref(0)
-const pageSize = ref(10)
-const search = ref({})
-const tableData = ref([])
-
-// 分页
-const handleSizeChange = (val) => {
-  pageSize.value = val
-  getTableData()
-}
-
-const handleCurrentChange = (val) => {
-  page.value = val
-  getTableData()
-}
-
-// 查询
-const getTableData = async() => {
-  const table = await getFileList({ page: page.value, pageSize: pageSize.value, ...search.value })
-  if (table.code === 0) {
-    tableData.value = table.data.list
-    total.value = table.data.total
-    page.value = table.data.page
-    pageSize.value = table.data.pageSize
-  }
-}
-getTableData()
-
-const deleteFileFunc = async(row) => {
-  ElMessageBox.confirm('此操作将永久删除文件, 是否继续?', '提示', {
-    confirmButtonText: '确定',
-    cancelButtonText: '取消',
-    type: 'warning',
-  })
-    .then(async() => {
-      const res = await deleteFile(row)
-      if (res.code === 0) {
-        ElMessage({
-          type: 'success',
-          message: '删除成功!',
-        })
-        if (tableData.value.length === 1 && page.value > 1) {
-          page.value--
-        }
-        getTableData()
-      }
-    })
-    .catch(() => {
-      ElMessage({
-        type: 'info',
-        message: '已取消删除',
-      })
-    })
-}
-
-const downloadFile = (row) => {
-  if (row.url.indexOf('http://') > -1 || row.url.indexOf('https://') > -1) {
-    downloadImage(row.url, row.name)
-  } else {
-    debugger
-    downloadImage(path.value + '/' + row.url, row.name)
-  }
-}
-
-/**
- * 编辑文件名或者备注
- * @param row
- * @returns {Promise<void>}
- */
-const editFileNameFunc = async(row) => {
-  ElMessageBox.prompt('请输入文件名或者备注', '编辑', {
-    confirmButtonText: '确定',
-    cancelButtonText: '取消',
-    inputPattern: /\S/,
-    inputErrorMessage: '不能为空',
-    inputValue: row.name
-  }).then(async({ value }) => {
-    row.name = value
-    // console.log(row)
-    const res = await editFileName(row)
-    if (res.code === 0) {
-      ElMessage({
-        type: 'success',
-        message: '编辑成功!',
-      })
-      getTableData()
-    }
-  }).catch(() => {
-    ElMessage({
-      type: 'info',
-      message: '取消修改'
-    })
-  })
-}
-</script>
-
-<style scoped>
-.name {
-  cursor: pointer;
-}
-
-</style>

+ 0 - 376
web/src/view/init/index.vue

@@ -1,376 +0,0 @@
-<template>
-  <div class="rounded-lg  flex items-center justify-evenly w-full h-full relative bg-white md:w-screen md:h-screen md:bg-[#194bfb] overflow-hidden">
-    <div class="rounded-md w-full h-full flex items-center justify-center overflow-hidden">
-      <div class="oblique h-[130%] w-3/5 bg-white transform -rotate-12 absolute -ml-80" />
-      <div
-        v-if="!page.showForm"
-        :class="[page.showReadme ?'slide-out-right' :'slide-in-fwd-top' ]"
-      >
-        <div class=" text-lg">
-          <div class="font-sans text-4xl font-bold text-center mb-4">GIN-VUE-ADMIN</div>
-          <p class="text-gray-600 mb-2">初始化须知</p>
-          <p class="text-gray-600 mb-2">1.您需有用一定的VUE和GOLANG基础</p>
-          <p class="text-gray-600 mb-2">2.请您确认是否已经阅读过<a
-            class="text-blue-600 font-bold"
-            href="https://www.gin-vue-admin.com"
-            target="_blank"
-          >官方文档</a> <a
-            class="text-blue-600 font-bold"
-            href="https://www.bilibili.com/video/BV1kv4y1g7nT?p=2"
-            target="_blank"
-          >初始化视频</a></p>
-          <p class="text-gray-600 mb-2">3.请您确认是否了解后续的配置流程</p>
-          <p class="text-gray-600 mb-2">4.如果您使用mysql数据库,请确认数据库引擎为<span class="text-red-600 font-bold text-3xl ml-2 ">innoDB</span></p>
-          <p class="text-gray-600 mb-2">注:开发组不为文档中书写过的内容提供无偿服务</p>
-          <p class="flex items-center justify-between mt-8">
-            <el-button
-              type="primary"
-              size="large"
-              @click="goDoc"
-            >
-              阅读文档
-            </el-button>
-            <el-button
-              type="primary"
-              size="large"
-              @click="showNext"
-            >
-              我已确认
-            </el-button>
-          </p>
-        </div>
-      </div>
-      <div
-        v-if="page.showForm "
-        :class="[ page.showForm ? 'slide-in-left' : 'slide-out-right' ]"
-        class="w-96"
-      >
-        <el-form
-          ref="formRef"
-          :model="form"
-          label-width="100px"
-          size="large"
-        >
-          <el-form-item label="数据库类型">
-            <el-select
-              v-model="form.dbType"
-              placeholder="请选择"
-              class="w-full"
-              @change="changeDB"
-            >
-              <el-option
-                key="mysql"
-                label="mysql"
-                value="mysql"
-              />
-              <el-option
-                key="pgsql"
-                label="pgsql"
-                value="pgsql"
-              />
-              <el-option
-                key="oracle"
-                label="oracle"
-                value="oracle"
-              />
-              <el-option
-                key="mssql"
-                label="mssql"
-                value="mssql"
-              />
-              <el-option
-                key="sqlite"
-                label="sqlite"
-                value="sqlite"
-              />
-            </el-select>
-          </el-form-item>
-          <el-form-item
-            v-if="form.dbType !== 'sqlite'"
-            label="host"
-          >
-            <el-input
-              v-model="form.host"
-              placeholder="请输入数据库链接"
-            />
-          </el-form-item>
-          <el-form-item
-            v-if="form.dbType !== 'sqlite'"
-            label="port"
-          >
-            <el-input
-              v-model="form.port"
-              placeholder="请输入数据库端口"
-            />
-          </el-form-item>
-          <el-form-item
-            v-if="form.dbType !== 'sqlite'"
-            label="userName"
-          >
-            <el-input
-              v-model="form.userName"
-              placeholder="请输入数据库用户名"
-            />
-          </el-form-item>
-          <el-form-item
-            v-if="form.dbType !== 'sqlite'"
-            label="password"
-          >
-            <el-input
-              v-model="form.password"
-              placeholder="请输入数据库密码(没有则为空)"
-            />
-          </el-form-item>
-          <el-form-item label="dbName">
-            <el-input
-              v-model="form.dbName"
-              placeholder="请输入数据库名称"
-            />
-          </el-form-item>
-          <el-form-item
-            v-if="form.dbType === 'sqlite'"
-            label="dbPath"
-          >
-            <el-input
-              v-model="form.dbPath"
-              placeholder="请输入sqlite数据库文件存放路径"
-            />
-          </el-form-item>
-          <el-form-item>
-            <div style="text-align: right">
-              <el-button
-                type="primary"
-                @click="onSubmit"
-              >立即初始化</el-button>
-            </div>
-          </el-form-item>
-        </el-form>
-      </div>
-    </div>
-
-    <div class="hidden md:block w-1/2 h-full float-right bg-[#194bfb]"><img
-      class="h-full"
-      src="@/assets/login_right_banner.jpg"
-      alt="banner"
-    ></div>
-  </div>
-</template>
-
-<script setup>
-// @ts-ignore
-import { initDB } from '@/api/initdb'
-import { reactive, ref } from 'vue'
-import { ElLoading, ElMessage } from 'element-plus'
-import { useRouter } from 'vue-router'
-
-defineOptions({
-  name: 'Init',
-})
-
-const router = useRouter()
-
-const page = reactive({
-  showReadme: false,
-  showForm: false
-})
-
-const showNext = () => {
-  page.showReadme = false
-  setTimeout(() => {
-    page.showForm = true
-  }, 20)
-}
-
-const goDoc = () => {
-  window.open('https://www.gin-vue-admin.com/guide/start-quickly/env.html')
-}
-
-const out = ref(false)
-
-const form = reactive({
-  dbType: 'mysql',
-  host: '127.0.0.1',
-  port: '3306',
-  userName: 'root',
-  password: '',
-  dbName: 'gva',
-  dbPath: ''
-})
-
-const changeDB = (val) => {
-  switch (val) {
-    case 'mysql':
-      Object.assign(form, {
-        dbType: 'mysql',
-        host: '127.0.0.1',
-        port: '3306',
-        userName: 'root',
-        password: '',
-        dbName: 'gva',
-        dbPath: ''
-      })
-      break
-    case 'pgsql':
-      Object.assign(form, {
-        dbType: 'pgsql',
-        host: '127.0.0.1',
-        port: '5432',
-        userName: 'postgres',
-        password: '',
-        dbName: 'gva',
-        dbPath: ''
-      })
-      break
-    case 'oracle':
-      Object.assign(form, {
-        dbType: 'oracle',
-        host: '127.0.0.1',
-        port: '1521',
-        userName: 'oracle',
-        password: '',
-        dbName: 'gva',
-        dbPath: ''
-      })
-      break
-    case 'mssql':
-      Object.assign(form, {
-        dbType: 'mssql',
-        host: '127.0.0.1',
-        port: '1433',
-        userName: 'mssql',
-        password: '',
-        dbName: 'gva',
-        dbPath: ''
-      })
-      break
-    case 'sqlite':
-      Object.assign(form, {
-        dbType: 'sqlite',
-        host: '',
-        port: '',
-        userName: '',
-        password: '',
-        dbName: 'gva',
-        dbPath: ''
-      })
-      break
-    default:
-      Object.assign(form, {
-        dbType: 'mysql',
-        host: '127.0.0.1',
-        port: '3306',
-        userName: 'root',
-        password: '',
-        dbName: 'gva',
-        dbPath: ''
-      })
-  }
-}
-const onSubmit = async() => {
-  const loading = ElLoading.service({
-    lock: true,
-    text: '正在初始化数据库,请稍候',
-    spinner: 'loading',
-    background: 'rgba(0, 0, 0, 0.7)',
-  })
-  try {
-    const res = await initDB(form)
-    if (res.code === 0) {
-      out.value = true
-      ElMessage({
-        type: 'success',
-        message: res.msg,
-      })
-      router.push({ name: 'Login' })
-    }
-    loading.close()
-  } catch (err) {
-    loading.close()
-  }
-}
-</script>
-
-<style lang="scss" scoped>
-
-.slide-in-fwd-top {
-  -webkit-animation: slide-in-fwd-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
-    both;
-  animation: slide-in-fwd-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
-}
-.slide-out-right {
-  -webkit-animation: slide-out-right 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53)
-    both;
-  animation: slide-out-right 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
-}
-.slide-in-left {
-  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
-    both;
-  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
-}
-@-webkit-keyframes slide-in-fwd-top {
-  0% {
-    transform: translateZ(-1400px) translateY(-800px);
-    opacity: 0;
-  }
-  100% {
-    transform: translateZ(0) translateY(0);
-    opacity: 1;
-  }
-}
-@keyframes slide-in-fwd-top {
-  0% {
-    transform: translateZ(-1400px) translateY(-800px);
-    opacity: 0;
-  }
-  100% {
-    transform: translateZ(0) translateY(0);
-    opacity: 1;
-  }
-}
-@-webkit-keyframes slide-out-right {
-  0% {
-    transform: translateX(0);
-    opacity: 1;
-  }
-  100% {
-    transform: translateX(1000px);
-    opacity: 0;
-  }
-}
-@keyframes slide-out-right {
-  0% {
-    transform: translateX(0);
-    opacity: 1;
-  }
-  100% {
-    transform: translateX(1000px);
-    opacity: 0;
-  }
-}
-@-webkit-keyframes slide-in-left {
-  0% {
-    transform: translateX(-1000px);
-    opacity: 0;
-  }
-  100% {
-    transform: translateX(0);
-    opacity: 1;
-  }
-}
-@keyframes slide-in-left {
-  0% {
-    transform: translateX(-1000px);
-    opacity: 0;
-  }
-  100% {
-    transform: translateX(0);
-    opacity: 1;
-  }
-}
-@media (max-width: 750px) {
-  .form {
-    width: 94vw !important;
-    padding: 0;
-  }
-}
-</style>

+ 0 - 37
web/src/view/layout/bottomInfo/bottomInfo.vue

@@ -1,37 +0,0 @@
-<!-- 此文件禁止修改!如果您没有购买授权,请联系wx:shouzi_1994购买授权,未授权状态只需保留此代码 不影响任何正常使用 -->
-
-<template>
-  <div class="flex gap-4 items-center text-sm text-gray-500 justify-center mb-4">
-    <span>Powered by</span>
-    <span>
-      <a
-        class="text-gray-800 font-bold"
-        href="https://github.com/flipped-aurora/gin-vue-admin"
-      >Gin-Vue-Admin</a>
-    </span>
-    <slot />
-    <span>Copyright</span>
-    <span>
-      <a
-        class="text-gray-800 font-bold"
-        href="https://github.com/flipped-aurora"
-      >flipped-aurora团队</a>
-    </span>
-  </div>
-</template>
-
-<script  setup>
-// 此文件内容为版权信息,如需改动,请联系wx:shouzi_1994购买授权 未授权状态只需保留此代码 不影响任何正常使用
-// 项目为apatch协议 请遵守版权协议内容
-defineOptions({
-  name: 'BottomInfo'
-})
-
-console.log(
-  `%c powered by %c flipped-aurorae %c`,
-  'background:#0081ff; padding: 1px; border-radius: 3px 0 0 3px; color: #fff',
-  'background:#354855; padding: 1px 5px; border-radius: 0 3px 3px 0; color: #fff; font-weight: bold;',
-  'background:transparent'
-)
-</script>
-

+ 1 - 3
web/src/view/layout/index.vue

@@ -16,7 +16,7 @@
           <img
             alt
             class="w-9 h-9 p-1 bg-white rounded-full"
-            :src="$GIN_VUE_ADMIN.appLogo"
+            src="../../assets/logo.png"
           >
           <div
             v-if="isSider"
@@ -179,7 +179,6 @@
             </transition>
           </div>
         </router-view>
-        <BottomInfo />
         <setting />
         <CommandMenu ref="command" />
       </el-main>
@@ -192,7 +191,6 @@
 import Aside from '@/view/layout/aside/index.vue'
 import HistoryComponent from '@/view/layout/aside/historyComponent/history.vue'
 import Search from '@/view/layout/search/search.vue'
-import BottomInfo from '@/view/layout/bottomInfo/bottomInfo.vue'
 import CustomPic from '@/components/customPic/index.vue'
 import CommandMenu from '@/components/commandMenu/index.vue'
 import Setting from './setting/index.vue'

+ 3 - 63
web/src/view/login/index.vue

@@ -15,14 +15,12 @@
 
               <img
                 class="w-24"
-                :src="$GIN_VUE_ADMIN.appLogo"
+                src="../../assets/logo.png"
                 alt
               >
             </div>
             <div class="mb-9">
-              <p class="text-center text-4xl font-bold">{{ $GIN_VUE_ADMIN.appName }}</p>
-              <p class="text-center text-sm font-normal text-gray-500 mt-2.5">A management platform using Golang and Vue
-              </p>
+              <p class="text-center text-4xl font-bold">龙弛财务</p>
             </div>
             <el-form
               ref="loginForm"
@@ -85,70 +83,13 @@
                   @click="submitForm"
                 >登 录</el-button>
               </el-form-item>
-              <el-form-item class="mb-6">
-                <el-button
-                  class="shadow shadow-blue-600 h-11 w-full"
-                  type="primary"
-                  size="large"
-                  @click="checkInit"
-                >前往初始化</el-button>
-
-              </el-form-item>
             </el-form>
           </div>
         </div>
       </div>
-      <div class="hidden md:block w-1/2 h-full float-right bg-[#194bfb]"><img
-        class="h-full"
-        src="@/assets/login_right_banner.jpg"
-        alt="banner"
-      ></div>
     </div>
 
-    <BottomInfo class="left-0 right-0 absolute bottom-3 mx-auto  w-full z-20">
-      <div class="links items-center justify-center gap-2 hidden md:flex">
-        <a
-          href="http://doc.henrongyi.top/"
-          target="_blank"
-        >
-          <img
-            src="@/assets/docs.png"
-            class="w-8 h-8"
-            alt="文档"
-          >
-        </a>
-        <a
-          href="https://support.qq.com/product/371961"
-          target="_blank"
-        >
-          <img
-            src="@/assets/kefu.png"
-            class="w-8 h-8"
-            alt="客服"
-          >
-        </a>
-        <a
-          href="https://github.com/flipped-aurora/gin-vue-admin"
-          target="_blank"
-        >
-          <img
-            src="@/assets/github.png"
-            class="w-8 h-8"
-            alt="github"
-          >
-        </a>
-        <a
-          href="https://space.bilibili.com/322210472"
-          target="_blank"
-        >
-          <img
-            src="@/assets/video.png"
-            class="w-8 h-8"
-            alt="视频站"
-          >
-        </a>
-      </div>
-    </BottomInfo>
+    
   </div>
 </template>
 
@@ -156,7 +97,6 @@
 import JSEncrypt from 'jsencrypt';  
 import { captcha,routerPublicKey } from '@/api/user'
 import { checkDB } from '@/api/initdb'
-import BottomInfo from '@/view/layout/bottomInfo/bottomInfo.vue'
 import { reactive, ref, onMounted } from 'vue'
 import { ElMessage } from 'element-plus'
 import { useRouter } from 'vue-router'

+ 0 - 4
web/src/view/superAdmin/api/api.vue

@@ -58,10 +58,6 @@
           icon="plus"
           @click="openDialog('addApi')"
         >新增</el-button>
-        <el-icon
-          class="cursor-pointer"
-          @click="toDoc('https://www.bilibili.com/video/BV1kv4y1g7nT?p=7&vd_source=f2640257c21e3b547a790461ed94875e')"
-        ><VideoCameraFilled /></el-icon>
         <el-button
           icon="delete"
           :disabled="!apis.length"

+ 0 - 4
web/src/view/superAdmin/authority/authority.vue

@@ -8,10 +8,6 @@
           icon="plus"
           @click="addAuthority(0)"
         >新增角色</el-button>
-        <el-icon
-          class="cursor-pointer"
-          @click="toDoc('https://www.bilibili.com/video/BV1kv4y1g7nT?p=8&vd_source=f2640257c21e3b547a790461ed94875e')"
-        ><VideoCameraFilled /></el-icon>
       </div>
       <el-table
         :data="tableData"

+ 0 - 24
web/src/view/superAdmin/menu/menu.vue

@@ -7,14 +7,6 @@
           icon="plus"
           @click="addMenu(0)"
         >新增根菜单</el-button>
-        <el-icon
-          class="cursor-pointer"
-          @click="
-            toDoc(
-              'https://www.bilibili.com/video/BV1kv4y1g7nT/?p=4&vd_source=f2640257c21e3b547a790461ed94875e'
-            )
-          "
-        ><VideoCameraFilled /></el-icon>
       </div>
 
       <!-- 由于此处菜单跟左侧列表一一对应所以不需要分页 pageSize默认999 -->
@@ -372,14 +364,6 @@
             icon="edit"
             @click="addParameter(form)"
           >新增菜单参数</el-button>
-          <el-icon
-            class="cursor-pointer"
-            @click="
-              toDoc(
-                'https://www.bilibili.com/video/BV1kv4y1g7nT?p=9&vd_source=f2640257c21e3b547a790461ed94875e'
-              )
-            "
-          ><VideoCameraFilled /></el-icon>
         </div>
         <el-table
           :data="form.parameters"
@@ -458,14 +442,6 @@
               toDoc('https://www.gin-vue-admin.com/guide/web/button-auth.html')
             "
           ><QuestionFilled /></el-icon>
-          <el-icon
-            class="cursor-pointer"
-            @click="
-              toDoc(
-                'https://www.bilibili.com/video/BV1kv4y1g7nT?p=11&vd_source=f2640257c21e3b547a790461ed94875e'
-              )
-            "
-          ><VideoCameraFilled /></el-icon>
         </div>
 
         <el-table

+ 0 - 237
web/src/view/system/state.vue

@@ -1,237 +0,0 @@
-<template>
-  <div>
-    <el-row
-      :gutter="15"
-      class="py-1"
-    >
-      <el-col :span="12">
-        <el-card
-          v-if="state.os"
-          class="card_item"
-        >
-          <template #header>
-            <div>Runtime</div>
-          </template>
-          <div>
-            <el-row :gutter="10">
-              <el-col :span="12">os:</el-col>
-              <el-col
-                :span="12"
-                v-text="state.os.goos"
-              />
-            </el-row>
-            <el-row :gutter="10">
-              <el-col :span="12">cpu nums:</el-col>
-              <el-col
-                :span="12"
-                v-text="state.os.numCpu"
-              />
-            </el-row>
-            <el-row :gutter="10">
-              <el-col :span="12">compiler:</el-col>
-              <el-col
-                :span="12"
-                v-text="state.os.compiler"
-              />
-            </el-row>
-            <el-row :gutter="10">
-              <el-col :span="12">go version:</el-col>
-              <el-col
-                :span="12"
-                v-text="state.os.goVersion"
-              />
-            </el-row>
-            <el-row :gutter="10">
-              <el-col :span="12">goroutine nums:</el-col>
-              <el-col
-                :span="12"
-                v-text="state.os.numGoroutine"
-              />
-            </el-row>
-          </div>
-        </el-card>
-      </el-col>
-      <el-col :span="12">
-        <el-card
-          v-if="state.disk"
-          class="card_item"
-        >
-          <template #header>
-            <div>Disk</div>
-          </template>
-          <div>
-            <el-row :gutter="10">
-              <el-col :span="12">
-                <el-row :gutter="10">
-                  <el-col :span="12">total (MB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.disk.totalMb"
-                  />
-                </el-row>
-                <el-row :gutter="10">
-                  <el-col :span="12">used (MB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.disk.usedMb"
-                  />
-                </el-row>
-                <el-row :gutter="10">
-                  <el-col :span="12">total (GB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.disk.totalGb"
-                  />
-                </el-row>
-                <el-row :gutter="10">
-                  <el-col :span="12">used (GB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.disk.usedGb"
-                  />
-                </el-row>
-              </el-col>
-              <el-col :span="12">
-                <el-progress
-                  type="dashboard"
-                  :percentage="state.disk.usedPercent"
-                  :color="colors"
-                />
-              </el-col>
-            </el-row>
-          </div>
-        </el-card>
-      </el-col>
-    </el-row>
-    <el-row
-      :gutter="15"
-      class="py-1"
-    >
-      <el-col :span="12">
-        <el-card
-          v-if="state.cpu"
-          class="card_item"
-          :body-style="{ height: '180px', 'overflow-y': 'scroll' }"
-        >
-          <template #header>
-            <div>CPU</div>
-          </template>
-          <div>
-            <el-row :gutter="10">
-              <el-col :span="12">physical number of cores:</el-col>
-              <el-col
-                :span="12"
-                v-text="state.cpu.cores"
-              />
-            </el-row>
-            <el-row
-              v-for="(item, index) in state.cpu.cpus"
-              :key="index"
-              :gutter="10"
-            >
-              <el-col :span="12">core {{ index }}:</el-col>
-              <el-col
-                :span="12"
-              ><el-progress
-                type="line"
-                :percentage="+item.toFixed(0)"
-                :color="colors"
-              /></el-col>
-            </el-row>
-          </div>
-        </el-card>
-      </el-col>
-      <el-col :span="12">
-        <el-card
-          v-if="state.ram"
-          class="card_item"
-        >
-          <template #header>
-            <div>Ram</div>
-          </template>
-          <div>
-            <el-row :gutter="10">
-              <el-col :span="12">
-                <el-row :gutter="10">
-                  <el-col :span="12">total (MB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.ram.totalMb"
-                  />
-                </el-row>
-                <el-row :gutter="10">
-                  <el-col :span="12">used (MB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.ram.usedMb"
-                  />
-                </el-row>
-                <el-row :gutter="10">
-                  <el-col :span="12">total (GB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="state.ram.totalMb / 1024"
-                  />
-                </el-row>
-                <el-row :gutter="10">
-                  <el-col :span="12">used (GB)</el-col>
-                  <el-col
-                    :span="12"
-                    v-text="(state.ram.usedMb / 1024).toFixed(2)"
-                  />
-                </el-row>
-              </el-col>
-              <el-col :span="12">
-                <el-progress
-                  type="dashboard"
-                  :percentage="state.ram.usedPercent"
-                  :color="colors"
-                />
-              </el-col>
-            </el-row>
-          </div>
-        </el-card>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script setup>
-import { getSystemState } from '@/api/system'
-import { onUnmounted, ref } from 'vue'
-
-defineOptions({
-  name: 'State',
-})
-
-const timer = ref(null)
-const state = ref({})
-const colors = ref([
-  { color: '#5cb87a', percentage: 20 },
-  { color: '#e6a23c', percentage: 40 },
-  { color: '#f56c6c', percentage: 80 }
-])
-
-const reload = async() => {
-  const { data } = await getSystemState()
-  state.value = data.server
-}
-
-reload()
-timer.value = setInterval(() => {
-  reload()
-}, 1000 * 10)
-
-onUnmounted(() => {
-  clearInterval(timer.value)
-  timer.value = null
-})
-
-</script>
-
-<style>
-
-.card_item {
-  @apply h-80 text-xl;
-}
-</style>

+ 0 - 4
web/src/view/systemTools/autoCode/index.vue

@@ -1,9 +1,5 @@
 <template>
   <div>
-    <warning-bar
-      href="https://www.bilibili.com/video/BV1kv4y1g7nT?p=3"
-      title="此功能为开发环境使用,不建议发布到生产,具体使用效果请看视频https://www.bilibili.com/video/BV1kv4y1g7nT?p=3"
-    />
     <!-- 从数据库直接获取字段 -->
     <div class="gva-search-box">
       <el-collapse

+ 0 - 8
web/src/view/systemTools/autoPkg/autoPkg.vue

@@ -1,9 +1,5 @@
 <template>
   <div>
-    <warning-bar
-      href="https://www.bilibili.com/video/BV1kv4y1g7nT?p=3"
-      title="此功能为开发环境使用,不建议发布到生产,具体使用效果请看视频https://www.bilibili.com/video/BV1kv4y1g7nT?p=3"
-    />
     <div class="gva-table-box">
       <div class="gva-btn-list gap-3 flex items-center">
         <el-button
@@ -11,10 +7,6 @@
           icon="plus"
           @click="openDialog('addApi')"
         >新增</el-button>
-        <el-icon
-          class="cursor-pointer"
-          @click="toDoc('https://www.bilibili.com/video/BV1kv4y1g7nT?p=3&vd_source=f2640257c21e3b547a790461ed94875e')"
-        ><VideoCameraFilled /></el-icon>
       </div>
       <el-table :data="tableData">
         <el-table-column

+ 0 - 4
web/src/view/systemTools/autoPlug/autoPlug.vue

@@ -227,10 +227,6 @@
             type="primary"
             @click="createPlug"
           >创建</el-button>
-          <el-icon
-            class="cursor-pointer ml-3"
-            @click="toDoc('https://www.bilibili.com/video/BV1kv4y1g7nT?p=13&vd_source=f2640257c21e3b547a790461ed94875e')"
-          ><VideoCameraFilled /></el-icon>
         </el-form-item>
       </el-form>