Prechádzať zdrojové kódy

增加自动化代码回滚功能

pixel 3 rokov pred
rodič
commit
15ad903955

+ 1 - 0
server/source/api.go

@@ -89,6 +89,7 @@ var apis = []model.SysApi{
 	{global.GVA_MODEL{ID: 86, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/getSysHistory", "查询回滚记录", "autoCode", "POST"},
 	{global.GVA_MODEL{ID: 87, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/rollback", "回滚自动生成代码", "autoCode", "POST"},
 	{global.GVA_MODEL{ID: 88, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/getMeta", "获取meta信息", "autoCode", "POST"},
+	{global.GVA_MODEL{ID: 89, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/autoCode/delSysHistory", "删除回滚记录", "autoCode", "POST"},
 }
 
 //@author: [SliverHorn](https://github.com/SliverHorn)

+ 1 - 0
server/source/casbin.go

@@ -89,6 +89,7 @@ var carbines = []gormadapter.CasbinRule{
 	{PType: "p", V0: "888", V1: "/autoCode/getSysHistory", V2: "POST"},
 	{PType: "p", V0: "888", V1: "/autoCode/rollback", V2: "POST"},
 	{PType: "p", V0: "888", V1: "/autoCode/getMeta", V2: "POST"},
+	{PType: "p", V0: "888", V1: "/autoCode/delSysHistory", V2: "POST"},
 	{PType: "p", V0: "8881", V1: "/base/login", V2: "POST"},
 	{PType: "p", V0: "8881", V1: "/user/register", V2: "POST"},
 	{PType: "p", V0: "8881", V1: "/api/createApi", V2: "POST"},

+ 8 - 0
web/src/api/autoCode.js

@@ -84,3 +84,11 @@ export const getMeta = (data) => {
     data
   })
 }
+
+export const delSysHistory = (data) => {
+  return service({
+    url: '/autoCode/delSysHistory',
+    method: 'post',
+    data
+  })
+}

+ 15 - 2
web/src/view/systemTools/autoCodeAdmin/index.vue

@@ -50,7 +50,7 @@
           <div>
             <el-button size="mini" type="primary" @click="rollback(scope.row)">回滚</el-button>
             <el-button size="mini" type="success" @click="goAutoCode(scope.row)">复用</el-button>
-            <el-button size="mini" type="warning" @click="deleteRow(scope.row)">删除</el-button>
+            <el-button size="mini" type="danger" @click="deleteRow(scope.row)">删除</el-button>
           </div>
         </template>
       </el-table-column>
@@ -71,7 +71,7 @@
 
 <script>
 // 获取列表内容封装在mixins内部  getTableData方法 初始化已封装完成 条件搜索时候 请把条件安好后台定制的结构体字段 放到 this.searchInfo 中即可实现条件搜索
-import { getSysHistory, rollback } from '@/api/autoCode.js'
+import { getSysHistory, rollback, delSysHistory } from '@/api/autoCode.js'
 import { formatTimeToStr } from '@/utils/date'
 import infoList from '@/mixins/infoList'
 
@@ -104,6 +104,19 @@ export default {
     this.getTableData()
   },
   methods: {
+    async deleteRow(row) {
+      this.$confirm('此操作将删除本历史, 是否继续?', '提示', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      }).then(async() => {
+        const res = await delSysHistory({ id: Number(row.ID) })
+        if (res.code === 0) {
+          this.$message.success('删除成功')
+          this.getTableData()
+        }
+      })
+    },
     async rollback(row) {
       this.$confirm('此操作将删除自动创建的文件和api, 是否继续?', '提示', {
         confirmButtonText: '确定',