Skip to content

Commit e47a512

Browse files
author
奇淼(piexlmax
authored
取消表格导出功能,修复回滚(删表)功能的painc (#1310)
* [feature]:取消表格导出功能 * 修复回滚(删表)painc的问题 * [feature]:修改初始化
1 parent 0627359 commit e47a512

File tree

19 files changed

+21
-461
lines changed

19 files changed

+21
-461
lines changed

server/api/v1/example/enter.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ package example
33
import "github.com/flipped-aurora/gin-vue-admin/server/service"
44

55
type ApiGroup struct {
6-
ExcelApi
76
CustomerApi
87
FileUploadAndDownloadApi
98
}
109

1110
var (
12-
excelService = service.ServiceGroupApp.ExampleServiceGroup.ExcelService
1311
customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
1412
fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
1513
)

server/api/v1/example/exa_excel.go

Lines changed: 0 additions & 120 deletions
This file was deleted.

server/go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ require (
3333
github.com/swaggo/swag v1.7.0
3434
github.com/tencentyun/cos-go-sdk-v5 v0.7.19
3535
github.com/unrolled/secure v1.0.7
36-
github.com/xuri/excelize/v2 v2.4.1
3736
go.uber.org/zap v1.16.0
3837
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
3938
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c

server/initialize/router.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ func Routers() *gin.Engine {
6565
systemRouter.InitSysDictionaryDetailRouter(PrivateGroup) // 字典详情管理
6666
systemRouter.InitAuthorityBtnRouterRouter(PrivateGroup) // 字典详情管理
6767

68-
exampleRouter.InitExcelRouter(PrivateGroup) // 表格导入导出
6968
exampleRouter.InitCustomerRouter(PrivateGroup) // 客户路由
7069
exampleRouter.InitFileUploadAndDownloadRouter(PrivateGroup) // 文件上传下载功能路由
7170

server/model/example/exa_excel.go

Lines changed: 0 additions & 8 deletions
This file was deleted.
-8.69 KB
Binary file not shown.
-8.79 KB
Binary file not shown.
-8.7 KB
Binary file not shown.

server/router/example/enter.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package example
22

33
type RouterGroup struct {
4-
ExcelRouter
54
CustomerRouter
65
FileUploadAndDownloadRouter
76
}

server/router/example/exa_excel.go

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)