Skip to content

Commit 15ad903

Browse files
author
pixel
committed
增加自动化代码回滚功能
1 parent d30d2e9 commit 15ad903

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

server/source/api.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ var apis = []model.SysApi{
8989
{global.GVA_MODEL{ID: 86, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/getSysHistory", "查询回滚记录", "autoCode", "POST"},
9090
{global.GVA_MODEL{ID: 87, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/rollback", "回滚自动生成代码", "autoCode", "POST"},
9191
{global.GVA_MODEL{ID: 88, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/getMeta", "获取meta信息", "autoCode", "POST"},
92+
{global.GVA_MODEL{ID: 89, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/delSysHistory", "删除回滚记录", "autoCode", "POST"},
9293
}
9394

9495
//@author: [SliverHorn](https://github.com/SliverHorn)

server/source/casbin.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ var carbines = []gormadapter.CasbinRule{
8989
{PType: "p", V0: "888", V1: "/autoCode/getSysHistory", V2: "POST"},
9090
{PType: "p", V0: "888", V1: "/autoCode/rollback", V2: "POST"},
9191
{PType: "p", V0: "888", V1: "/autoCode/getMeta", V2: "POST"},
92+
{PType: "p", V0: "888", V1: "/autoCode/delSysHistory", V2: "POST"},
9293
{PType: "p", V0: "8881", V1: "/base/login", V2: "POST"},
9394
{PType: "p", V0: "8881", V1: "/user/register", V2: "POST"},
9495
{PType: "p", V0: "8881", V1: "/api/createApi", V2: "POST"},

web/src/api/autoCode.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,11 @@ export const getMeta = (data) => {
8484
data
8585
})
8686
}
87+
88+
export const delSysHistory = (data) => {
89+
return service({
90+
url: '/autoCode/delSysHistory',
91+
method: 'post',
92+
data
93+
})
94+
}

web/src/view/systemTools/autoCodeAdmin/index.vue

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<div>
5151
<el-button size="mini" type="primary" @click="rollback(scope.row)">回滚</el-button>
5252
<el-button size="mini" type="success" @click="goAutoCode(scope.row)">复用</el-button>
53-
<el-button size="mini" type="warning" @click="deleteRow(scope.row)">删除</el-button>
53+
<el-button size="mini" type="danger" @click="deleteRow(scope.row)">删除</el-button>
5454
</div>
5555
</template>
5656
</el-table-column>
@@ -71,7 +71,7 @@
7171

7272
<script>
7373
// 获取列表内容封装在mixins内部 getTableData方法 初始化已封装完成 条件搜索时候 请把条件安好后台定制的结构体字段 放到 this.searchInfo 中即可实现条件搜索
74-
import { getSysHistory, rollback } from '@/api/autoCode.js'
74+
import { getSysHistory, rollback, delSysHistory } from '@/api/autoCode.js'
7575
import { formatTimeToStr } from '@/utils/date'
7676
import infoList from '@/mixins/infoList'
7777
@@ -104,6 +104,19 @@ export default {
104104
this.getTableData()
105105
},
106106
methods: {
107+
async deleteRow(row) {
108+
this.$confirm('此操作将删除本历史, 是否继续?', '提示', {
109+
confirmButtonText: '确定',
110+
cancelButtonText: '取消',
111+
type: 'warning'
112+
}).then(async() => {
113+
const res = await delSysHistory({ id: Number(row.ID) })
114+
if (res.code === 0) {
115+
this.$message.success('删除成功')
116+
this.getTableData()
117+
}
118+
})
119+
},
107120
async rollback(row) {
108121
this.$confirm('此操作将删除自动创建的文件和api, 是否继续?', '提示', {
109122
confirmButtonText: '确定',

0 commit comments

Comments
 (0)